summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHasso Tepper <hasso.tepper@gmail.com>2012-12-14 14:58:32 +0200
committerDavid Lamparter <equinox@opensourcerouting.org>2013-01-11 21:50:06 +0100
commit61be0ee8824b30e94ddd2bfe8b51fcfd330c41dd (patch)
tree483968a7a26038e2f88056458ac575ff9938e386
parent675769b1b17a068526d90786e1c35304656faba7 (diff)
build: Fix build for systems with no /bin/true
There are systems with no /bin/true - it might have different path (/usr/bin/true) or even a shell builtin. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
-rw-r--r--lib/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 0ec5b4c9..d7c31edb 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -61,5 +61,5 @@ gitversion.h: gitversion.h.tmp
else
.PHONY: gitversion.h
gitversion.h:
- /bin/true
+ true
endif