From: Peter Korsgaard Date: Wed, 26 Aug 2009 07:52:51 +0000 (+0200) Subject: package/Makefile.in: use := for INSTALL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=717aaab9e8ced5ee4dd2a2c9cf4af9dcc94d353a;p=buildroot.git package/Makefile.in: use := for INSTALL So it doesn't get reevaluated every time and for consistency with FLEX/BISON. Signed-off-by: Peter Korsgaard --- diff --git a/package/Makefile.in b/package/Makefile.in index 2dbf37fbf7..a67c1caf23 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -181,7 +181,7 @@ ifeq ($(BR2_STRIP_none),y) TARGET_STRIP=true -Not_stripping STRIPCMD=$(TARGET_STRIP) endif -INSTALL=$(shell which install || type -p install) +INSTALL:=$(shell which install || type -p install) FLEX:=$(shell which flex || type -p flex) BISON:=$(shell which bison || type -p bison)