diff options
author | Tony Theodore <tonyt@logyst.com> | 2013-03-26 11:54:10 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2013-03-26 11:54:10 (GMT) |
commit | 79b59c8430d7b4a219e6802448b0f9df837d4e9e (patch) | |
tree | 1fffdc1e7c9cd9f210c8662af24a1369e1f4e645 /Makefile | |
parent | 23dae33a44a1b94c29c721de9acd943668f3754e (diff) | |
download | mxe-79b59c8430d7b4a219e6802448b0f9df837d4e9e.zip mxe-79b59c8430d7b4a219e6802448b0f9df837d4e9e.tar.gz mxe-79b59c8430d7b4a219e6802448b0f9df837d4e9e.tar.bz2 |
add portability variable for gnu sort and add coreutils to requirements
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -15,6 +15,7 @@ LIBTOOL := $(shell glibtool --help >/dev/null 2>&1 && echo g)libtool LIBTOOLIZE := $(shell glibtoolize --help >/dev/null 2>&1 && echo g)libtoolize PATCH := $(shell gpatch --help >/dev/null 2>&1 && echo g)patch SED := $(shell gsed --help >/dev/null 2>&1 && echo g)sed +SORT := $(shell gsort --help >/dev/null 2>&1 && echo g)sort WGET := wget --no-check-certificate \ --user-agent=$(shell wget --version | \ $(SED) -n 's,GNU \(Wget\) \([0-9.]*\).*,\1/\2,p') |