diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-04-17 13:57:12 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-04-17 13:57:12 +0000 |
commit | 6a8826434fb98d7bcf870d9f3e2e90a672bc9f03 (patch) | |
tree | a48f48676cd85b0fbf29e42df5b8c6f38dd66b5f /Makefile.target | |
parent | a03a60532aa137e27bdd8ff8738d56b8ba2126cd (diff) |
Allow user to specify "install" utility.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1823 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index abe19c0a64..af5e432dce 100644 --- a/Makefile.target +++ b/Makefile.target @@ -470,7 +470,7 @@ clean: install: all ifneq ($(PROGS),) - install -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)" + $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)" endif ifneq ($(wildcard .depend),) |