diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2009-03-07 07:52:50 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2009-03-07 07:52:50 (GMT) |
commit | fe9811173cf913eb0cd9b4395d2ede1a51803c61 (patch) | |
tree | 74ca4bb1c4c4bfe46a20fa5d81954e8935ac2943 /Makefile | |
parent | 925be151720885abad8845c00613900c2bdb1bee (diff) | |
download | mxe-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 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -13,6 +13,7 @@ TOP_DIR := $(patsubst %/,%,$(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIS PATH := $(PREFIX)/bin:$(PATH) SHELL := bash SED := $(shell gsed --help >/dev/null 2>&1 && echo g)sed +INSTALL := $(shell ginstall --help >/dev/null 2>&1 && echo g)install SHORT_PKG_VERSION = \ $(word 1,$(subst ., ,$($(1)_VERSION))).$(word 2,$(subst ., ,$($(1)_VERSION))) |