From 06fa582130dac08e8c51ba27e2226f7ec7fc29ae Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 19 Aug 1998 12:56:20 +0000 Subject: Patches from Ralf Corsepius and myself to make solaris target buildable. > 1. The ipc check fails since solaris does not define union semun. > The unix port code actually defines this type itself on solaris. Doing > the same thing lets it get configured. Then... > 2. It looks like BSDINSTALL is not defined properly. BSDINSTALL is defined in make/host.cfg.in as BSDINSTALL=@INSTALL@ @INSTALL@ is generated by autoconf's standard macro AC_PROG_INSTALL, which is widely used in almost any autoconf/automake configured package. In case there is really something wrong with it, then it must be considered a bug in autoconf. I can see a doubious fragment in AC_PROG_INSTALL, which is used when no appropriate bsd-install is found. Finally Ralf saw a problem with the find on solaris which I also saw and fixed. --- tools/update/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/update') diff --git a/tools/update/Makefile.in b/tools/update/Makefile.in index e558bd4b37..142bece1f1 100644 --- a/tools/update/Makefile.in +++ b/tools/update/Makefile.in @@ -26,7 +26,7 @@ INSTALLED=$(INSTALL_LIST:%=$(DESTDIR)/%) all: $(DESTDIR) $(DESTDIR): - $(BSDINSTALL) $(INSTDIRFLAGS) $@ + @INSTALL@ $(INSTDIRFLAGS) $@ install: $(INSTALLED) @@ -34,5 +34,5 @@ install: $(INSTALLED) # FIXME: This isn't correct $(DESTDIR)/%: % $(make-script) - $(BSDINSTALL) $(INSTBINFLAGS) $(PERL_PGMS) ${DESTDIR} - $(BSDINSTALL) $(INSTDATAFLAGS) $(MISC_SUPPORT) ${DESTDIR} + @INSTALL@ $(INSTBINFLAGS) $(PERL_PGMS) ${DESTDIR} + @INSTALL@ $(INSTDATAFLAGS) $(MISC_SUPPORT) ${DESTDIR} -- cgit v1.2.3