FS-6379: --resolve fix ldns bootstrap/build on solaris

This commit is contained in:
Brian West 2014-03-19 11:02:49 +00:00
parent 496a6db5c4
commit 9a94235f82
4 changed files with 4 additions and 3 deletions

View File

@ -432,6 +432,7 @@ bootstrap_libs_post() {
if test ! -x install-sh; then
ex ${AUTOMAKE:-automake} --add-missing --copy
ex rm -rf autom4te*.cache
chmod a+x install-sh
fi
;;
esac

View File

@ -66,7 +66,7 @@ LINTFLAGS+="-Dsigset_t=long"
# FreeBSD8
LINTFLAGS+="-D__uint16_t=uint16_t"
INSTALL = $(srcdir)/install-sh
INSTALL = $(SHELL) $(srcdir)/install-sh
LIBDNS_SOURCES = rdata.c util.c rr.c packet.c wire2host.c \
host2str.c buffer.c str2host.c tsig.c resolver.c \

View File

@ -15,7 +15,7 @@ CFLAGS = -I. @CFLAGS@
CPPFLAGS = @CPPFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
INSTALL = $(srcdir)/install-sh -c
INSTALL = $(SHELL) $(srcdir)/install-sh -c
INSTALL_PROGRAM = $(INSTALL)
LDNSDIR = @LDNSDIR@
LIBS_STC = @LIBS_STC@

View File

@ -22,7 +22,7 @@ LIBS = @LIBS@
RUNTIME_PATH = @RUNTIME_PATH@
LDNSDIR = @LDNSDIR@
INSTALL = $(srcdir)/../install-sh
INSTALL = $(SHELL) $(srcdir)/../install-sh
COMPILE = $(CC) $(CPPFLAGS) $(LIBSSL_CPPFLAGS) $(CFLAGS)
LINK = $(libtool) --tag=CC --quiet --mode=link $(CC) $(CFLAGS) $(LDFLAGS) $(LIBS) $(RUNTIME_PATH)