package/dhcp/S80dhcp-server: allow empty INTERFACES
[buildroot-gz.git] / package / libcec / 0001-fixed-don-t-generate-an-invalid-env.h-when-not-built.patch
blobd823a5b27d485846d85f125eaeefb3251e500782
1 From 369ffb5be23eca520df99732541d0482da271fd3 Mon Sep 17 00:00:00 2001
2 From: Lars Op den Kamp <lars@opdenkamp.eu>
3 Date: Sat, 11 Jul 2015 00:53:17 +0200
4 Subject: [PATCH] fixed: don't generate an invalid env.h when not built with
5 the .git dir present. closes #112
7 Backported from upstream commit 2f32a9debc1f148b5dfcfc463480f1432bb71725.
9 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 ---
11 support/git-rev.sh | 7 +++++--
12 1 file changed, 5 insertions(+), 2 deletions(-)
14 diff --git a/support/git-rev.sh b/support/git-rev.sh
15 index 5dce3d0..4aadae6 100755
16 --- a/support/git-rev.sh
17 +++ b/support/git-rev.sh
18 @@ -1,5 +1,8 @@
19 #!/bin/sh
21 ## cmake doesn't read the variable when it doesn't end with a newline, and I haven't figured out how to have it add a newline directly...
22 -echo -n "`git --no-pager log --abbrev=7 -n 1 --pretty=format:"%h"`\n"
24 +if [ -d .git ]; then
25 + echo "`git --no-pager log --abbrev=7 -n 1 --pretty=format:"%h"`"
26 +else
27 + echo "<unknown>"
28 +fi
29 --
30 2.5.0