diff options
author | hans <hans> | 2012-04-19 13:07:45 +0000 |
---|---|---|
committer | hans <hans> | 2012-04-19 13:07:45 +0000 |
commit | cacc9a3626f6647aa16d587b7a45c2edb832bba5 (patch) | |
tree | c9e08437d6d67299dfb6379730e3a21b440cd461 /net/ekiga/patches | |
parent | 0b30860fbbe6304151ba5f1247dfda0470383b93 (diff) | |
download | pkgsrc-cacc9a3626f6647aa16d587b7a45c2edb832bba5.tar.gz |
Fix make target for revision.h to work with pdksh.
Diffstat (limited to 'net/ekiga/patches')
-rw-r--r-- | net/ekiga/patches/patch-src_Makefile.am | 13 | ||||
-rw-r--r-- | net/ekiga/patches/patch-src_Makefile.in | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/net/ekiga/patches/patch-src_Makefile.am b/net/ekiga/patches/patch-src_Makefile.am new file mode 100644 index 00000000000..5169cdfb0b9 --- /dev/null +++ b/net/ekiga/patches/patch-src_Makefile.am @@ -0,0 +1,13 @@ +$NetBSD: patch-src_Makefile.am,v 1.1 2012/04/19 13:07:45 hans Exp $ + +--- src/Makefile.am.orig 2009-09-22 16:27:35.000000000 +0200 ++++ src/Makefile.am 2012-04-19 14:17:59.954738664 +0200 +@@ -147,7 +147,7 @@ src/revision.h: + echo "#define EKIGA_REVISION $(GIT_REVISION)" > revision.h; \ + fi \ + else \ +- if !(test -e "./revision.h"); then\ ++ if (test ! -e "./revision.h"); then\ + echo "#define EKIGA_REVISION \"unknown\"" > revision.h; \ + fi \ + fi diff --git a/net/ekiga/patches/patch-src_Makefile.in b/net/ekiga/patches/patch-src_Makefile.in new file mode 100644 index 00000000000..d29008cb189 --- /dev/null +++ b/net/ekiga/patches/patch-src_Makefile.in @@ -0,0 +1,13 @@ +$NetBSD: patch-src_Makefile.in,v 1.1 2012/04/19 13:07:45 hans Exp $ + +--- src/Makefile.in.orig 2012-04-18 23:04:56.668736136 +0200 ++++ src/Makefile.in 2012-04-19 14:18:41.144638079 +0200 +@@ -1051,7 +1051,7 @@ src/revision.h: + echo "#define EKIGA_REVISION $(GIT_REVISION)" > revision.h; \ + fi \ + else \ +- if !(test -e "./revision.h"); then\ ++ if (test ! -e "./revision.h"); then\ + echo "#define EKIGA_REVISION \"unknown\"" > revision.h; \ + fi \ + fi |