From: Hasso Tepper Date: Fri, 14 Dec 2012 12:58:32 +0000 (+0200) Subject: build: Fix build for systems with no /bin/true X-Git-Tag: frr-2.0-rc1~1721 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=61be0ee8824b30e94ddd2bfe8b51fcfd330c41dd;p=mirror%2Ffrr.git 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 --- diff --git a/lib/Makefile.am b/lib/Makefile.am index 0ec5b4c92b..d7c31edb49 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