From: Marko Kreen Date: Tue, 20 Dec 2011 20:58:19 +0000 (+0200) Subject: antimake: add SHELL replacement X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=9009b7c924f4f1593b355015aaec995c16d6bd90;p=libusual.git antimake: add SHELL replacement libtool needs to get right shell, may not work with default one. --- diff --git a/config.mak.in b/config.mak.in index fc74306..831bad1 100644 --- a/config.mak.in +++ b/config.mak.in @@ -22,6 +22,7 @@ AR = @AR@ ARFLAGS = @ARFLAGS@ RANLIB = @RANLIB@ LIBTOOL = @LIBTOOL@ +SHELL = @SHELL@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ diff --git a/mk/antimake.mk b/mk/antimake.mk index d32aae1..0340426 100755 --- a/mk/antimake.mk +++ b/mk/antimake.mk @@ -119,6 +119,7 @@ RANLIB = @RANLIB@ LIBTOOL = @LIBTOOL@ # other tools +SHELL = @SHELL@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ @@ -202,6 +203,7 @@ endif RANLIB ?= ranlib # other tools +SHELL ?= /bin/sh INSTALL ?= install INSTALL_PROGRAM ?= $(INSTALL) INSTALL_SCRIPT ?= $(INSTALL)