]> git.puffer.fish Git - matthieu/frr.git/commitdiff
build: Fix build for systems with no /bin/true
authorHasso Tepper <hasso.tepper@gmail.com>
Fri, 14 Dec 2012 12:58:32 +0000 (14:58 +0200)
committerDavid Lamparter <equinox@opensourcerouting.org>
Fri, 11 Jan 2013 20:50:06 +0000 (21:50 +0100)
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>
lib/Makefile.am

index 0ec5b4c92bc90f9efc866ee3d935996171ee0638..d7c31edb4944ffda27c86fba4cd1dc681c94447a 100644 (file)
@@ -61,5 +61,5 @@ gitversion.h: gitversion.h.tmp
 else
 .PHONY: gitversion.h
 gitversion.h:
-       /bin/true
+       true
 endif