summaryrefslogtreecommitdiffstats
path: root/src/pdcurses.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/pdcurses.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/pdcurses.mk')
-rw-r--r--src/pdcurses.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pdcurses.mk b/src/pdcurses.mk
index 406c581..6515e55 100644
--- a/src/pdcurses.mk
+++ b/src/pdcurses.mk
@@ -25,9 +25,9 @@ define $(PKG)_BUILD
WIDE=Y \
UTF8=Y
$(TARGET)-ranlib '$(1)/pdcurses.a' '$(1)/panel.a'
- install -d '$(PREFIX)/$(TARGET)/include/'
- install -m644 '$(1)/curses.h' '$(1)/panel.h' '$(1)/term.h' '$(PREFIX)/$(TARGET)/include/'
- install -d '$(PREFIX)/$(TARGET)/lib/'
- install -m644 '$(1)/pdcurses.a' '$(PREFIX)/$(TARGET)/lib/libpdcurses.a'
- install -m644 '$(1)/panel.a' '$(PREFIX)/$(TARGET)/lib/libpanel.a'
+ $(INSTALL) -d '$(PREFIX)/$(TARGET)/include/'
+ $(INSTALL) -m644 '$(1)/curses.h' '$(1)/panel.h' '$(1)/term.h' '$(PREFIX)/$(TARGET)/include/'
+ $(INSTALL) -d '$(PREFIX)/$(TARGET)/lib/'
+ $(INSTALL) -m644 '$(1)/pdcurses.a' '$(PREFIX)/$(TARGET)/lib/libpdcurses.a'
+ $(INSTALL) -m644 '$(1)/panel.a' '$(PREFIX)/$(TARGET)/lib/libpanel.a'
endef