summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-08-19 12:56:20 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-08-19 12:56:20 +0000
commit06fa582130dac08e8c51ba27e2226f7ec7fc29ae (patch)
tree1317d75a7d4e66a1e53cd414806df4a7fddc6ed2 /tools
parentCleaned up the ka9q definition. (diff)
downloadrtems-06fa582130dac08e8c51ba27e2226f7ec7fc29ae.tar.bz2
Patches from Ralf Corsepius <corsepiu@faw.uni-ulm.de> 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.
Diffstat (limited to '')
-rw-r--r--tools/build/os/msdos/Makefile.in2
-rw-r--r--tools/build/scripts/Makefile.in2
-rw-r--r--tools/build/src/Makefile.in4
-rw-r--r--tools/cpu/generic/Makefile.in4
-rw-r--r--tools/cpu/sh/Makefile.in4
-rw-r--r--tools/update/Makefile.in6
6 files changed, 11 insertions, 11 deletions
diff --git a/tools/build/os/msdos/Makefile.in b/tools/build/os/msdos/Makefile.in
index 7321a3a2ea..23a840d33a 100644
--- a/tools/build/os/msdos/Makefile.in
+++ b/tools/build/os/msdos/Makefile.in
@@ -20,7 +20,7 @@ INSTALLED=$(DESTDIR)/ifc.exe \
all: $(DESTDIR) $(PGMS) install
$(DESTDIR):
- $(BSDINSTALL) $(INSTDIRFLAGS) $@
+ @INSTALL@ $(INSTDIRFLAGS) $@
install: $(INSTALLED)
diff --git a/tools/build/scripts/Makefile.in b/tools/build/scripts/Makefile.in
index 2634d61562..afcc980db8 100644
--- a/tools/build/scripts/Makefile.in
+++ b/tools/build/scripts/Makefile.in
@@ -25,7 +25,7 @@ INSTALLED=$(PGMS:%=$(DESTDIR)/%)
all: $(DESTDIR) $(PGMS) install
$(DESTDIR):
- $(BSDINSTALL) $(INSTDIRFLAGS) $@
+ @INSTALL@ $(INSTDIRFLAGS) $@
install: $(INSTALLED)
diff --git a/tools/build/src/Makefile.in b/tools/build/src/Makefile.in
index 4ba4dfd4a2..52942d909f 100644
--- a/tools/build/src/Makefile.in
+++ b/tools/build/src/Makefile.in
@@ -64,7 +64,7 @@ CLOBBER_ADDITIONS +=
DESTDIR=${PROJECT_RELEASE}/build-tools
$(DESTDIR):
- $(BSDINSTALL) $(INSTDIRFLAGS) $@
+ @INSTALL@ $(INSTDIRFLAGS) $@
all: $(ARCH) $(DESTDIR) $(SRCS) $(PGMS)
- $(BSDINSTALL) $(INSTBINFLAGS) $(PGMS) $(DESTDIR)
+ @INSTALL@ $(INSTBINFLAGS) $(PGMS) $(DESTDIR)
diff --git a/tools/cpu/generic/Makefile.in b/tools/cpu/generic/Makefile.in
index e5fdec7d7f..4586a43b45 100644
--- a/tools/cpu/generic/Makefile.in
+++ b/tools/cpu/generic/Makefile.in
@@ -24,10 +24,10 @@ INSTALLED=$(PGMS:%=$(DESTDIR)/%)
all: $(DESTDIR) $(PGMS) install
$(DESTDIR):
- $(BSDINSTALL) $(INSTDIRFLAGS) $@
+ @INSTALL@ $(INSTDIRFLAGS) $@
install: $(INSTALLED)
# Install the program
$(DESTDIR)/%: %
- $(BSDINSTALL) $(INSTBINFLAGS) $^ $@
+ @INSTALL@ $(INSTBINFLAGS) $^ $@
diff --git a/tools/cpu/sh/Makefile.in b/tools/cpu/sh/Makefile.in
index c35743adea..cbda87fbd8 100644
--- a/tools/cpu/sh/Makefile.in
+++ b/tools/cpu/sh/Makefile.in
@@ -55,8 +55,8 @@ ${PGMS}: $(OBJS) $(LINK_FILES)
$(make-exe)
$(DESTDIR):
- $(BSDINSTALL) $(INSTDIRFLAGS) $@
+ @INSTALL@ $(INSTDIRFLAGS) $@
# Install the program
install: $(DESTDIR) $(PGMS)
- $(BSDINSTALL) $(INSTBINFLAGS) ${PGMS} $(DESTDIR)
+ @INSTALL@ $(INSTBINFLAGS) ${PGMS} $(DESTDIR)
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}