diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-08-01 11:31:29 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-08-01 11:31:29 +0200 |
commit | 37cea19340eb10d8fd4b3857be661793c1a932be (patch) | |
tree | c380963cae96c655c35c6b49c1f709a6e8db9226 | |
parent | e15c0d07e15e94e800bd9a0cf3c24f45aeacd89c (diff) | |
parent | 1a2433b58e841f36790bd4015e1a19e5b9793d9a (diff) | |
download | buildroot-novena-37cea19340eb10d8fd4b3857be661793c1a932be.tar.gz buildroot-novena-37cea19340eb10d8fd4b3857be661793c1a932be.zip |
Merge branch 'install-fix' of git://git.busybox.net/~tpetazzoni/git/buildroot
-rw-r--r-- | package/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index 3dcdfe104..0829e8f3b 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=/usr/bin/install +INSTALL=$(shell which install || type -p install) FLEX:=$(shell which flex || type -p flex) BISON:=$(shell which bison || type -p bison) |