summaryrefslogtreecommitdiffstats
path: root/src/bzip2.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2009-03-07 07:52:50 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2009-03-07 07:52:50 (GMT)
commitfe9811173cf913eb0cd9b4395d2ede1a51803c61 (patch)
tree74ca4bb1c4c4bfe46a20fa5d81954e8935ac2943 /src/bzip2.mk
parent925be151720885abad8845c00613900c2bdb1bee (diff)
downloadmxe-fe9811173cf913eb0cd9b4395d2ede1a51803c61.zip
mxe-fe9811173cf913eb0cd9b4395d2ede1a51803c61.tar.gz
mxe-fe9811173cf913eb0cd9b4395d2ede1a51803c61.tar.bz2
portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Diffstat (limited to 'src/bzip2.mk')
-rw-r--r--src/bzip2.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bzip2.mk b/src/bzip2.mk
index f86a846..fbf1386 100644
--- a/src/bzip2.mk
+++ b/src/bzip2.mk
@@ -22,8 +22,8 @@ define $(PKG)_BUILD
CC='$(TARGET)-gcc' \
AR='$(TARGET)-ar' \
RANLIB='$(TARGET)-ranlib'
- install -d '$(PREFIX)/$(TARGET)/lib'
- install -m664 '$(1)/libbz2.a' '$(PREFIX)/$(TARGET)/lib/'
- install -d '$(PREFIX)/$(TARGET)/include'
- install -m664 '$(1)/bzlib.h' '$(PREFIX)/$(TARGET)/include/'
+ $(INSTALL) -d '$(PREFIX)/$(TARGET)/lib'
+ $(INSTALL) -m664 '$(1)/libbz2.a' '$(PREFIX)/$(TARGET)/lib/'
+ $(INSTALL) -d '$(PREFIX)/$(TARGET)/include'
+ $(INSTALL) -m664 '$(1)/bzlib.h' '$(PREFIX)/$(TARGET)/include/'
endef