summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Whyman <thev00d00@gentoo.org>2017-05-12 22:50:23 +0100
committerIan Whyman <thev00d00@gentoo.org>2017-05-12 22:50:43 +0100
commit8c060e5fb86b2ec49cf8a4d806b5497f1b48346e (patch)
tree0d7cd0d80b5ab7201abb721438fd16ea1cc13444 /dev-libs/libcec/files
parentdev-libs/libcec: Tidy old (diff)
downloadgentoo-8c060e5fb86b2ec49cf8a4d806b5497f1b48346e.tar.gz
gentoo-8c060e5fb86b2ec49cf8a4d806b5497f1b48346e.tar.bz2
gentoo-8c060e5fb86b2ec49cf8a4d806b5497f1b48346e.zip
dev-libs/libcec: Version bump, tidy old patch
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'dev-libs/libcec/files')
-rw-r--r--dev-libs/libcec/files/libcec-3.0.1-envcheck.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-libs/libcec/files/libcec-3.0.1-envcheck.patch b/dev-libs/libcec/files/libcec-3.0.1-envcheck.patch
deleted file mode 100644
index bb8f107312f9..000000000000
--- a/dev-libs/libcec/files/libcec-3.0.1-envcheck.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-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
-