summaryrefslogtreecommitdiffstats
path: root/package/libcec/0001-fixed-don-t-generate-an-invalid-env.h-when-not-built.patch
diff options
context:
space:
mode:
authorBernd Kuhls <bernd.kuhls@t-online.de>2016-02-20 23:09:09 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-02-29 23:41:59 +0100
commitdedf1fb57454bbcd1fa5b591cf36c8a8e335ade3 (patch)
tree76d8b12793a1e56c49630165f7b50e8948681dbc /package/libcec/0001-fixed-don-t-generate-an-invalid-env.h-when-not-built.patch
parent89a8178ba5d502b4b049adf87935d26770db99ed (diff)
downloadbuildroot-dedf1fb57454bbcd1fa5b591cf36c8a8e335ade3.tar.gz
buildroot-dedf1fb57454bbcd1fa5b591cf36c8a8e335ade3.zip
package/libcec: bump version, add hash
Also remove patch committed upstream. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libcec/0001-fixed-don-t-generate-an-invalid-env.h-when-not-built.patch')
-rw-r--r--package/libcec/0001-fixed-don-t-generate-an-invalid-env.h-when-not-built.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/package/libcec/0001-fixed-don-t-generate-an-invalid-env.h-when-not-built.patch b/package/libcec/0001-fixed-don-t-generate-an-invalid-env.h-when-not-built.patch
deleted file mode 100644
index d823a5b27d..0000000000
--- a/package/libcec/0001-fixed-don-t-generate-an-invalid-env.h-when-not-built.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 369ffb5be23eca520df99732541d0482da271fd3 Mon Sep 17 00:00:00 2001
-From: Lars Op den Kamp <lars@opdenkamp.eu>
-Date: Sat, 11 Jul 2015 00:53:17 +0200
-Subject: [PATCH] fixed: don't generate an invalid env.h when not built with
- the .git dir present. closes #112
-
-Backported from upstream commit 2f32a9debc1f148b5dfcfc463480f1432bb71725.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
----
- support/git-rev.sh | 7 +++++--
- 1 file changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/support/git-rev.sh b/support/git-rev.sh
-index 5dce3d0..4aadae6 100755
---- a/support/git-rev.sh
-+++ b/support/git-rev.sh
-@@ -1,5 +1,8 @@
- #!/bin/sh
-
- ## 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...
--echo -n "`git --no-pager log --abbrev=7 -n 1 --pretty=format:"%h"`\n"
--
-+if [ -d .git ]; then
-+ echo "`git --no-pager log --abbrev=7 -n 1 --pretty=format:"%h"`"
-+else
-+ echo "<unknown>"
-+fi
---
-2.5.0
-
OpenPOWER on IntegriCloud