* Makefile.am (install-exec-local): Create $(tooldir)/bin before

trying to install anything into it.
	* Makefile.in: Rebuild.
This commit is contained in:
Ian Lance Taylor 1997-08-04 19:55:49 +00:00
parent 6b4f31d97f
commit 7ab51306ae
3 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,9 @@
Mon Aug 4 11:47:31 1997 Ian Lance Taylor <ian@cygnus.com>
* Makefile.am (install-exec-local): Create $(tooldir)/bin before
trying to install anything into it.
* Makefile.in: Rebuild.
* Makefile.am (TOOL_PROGS): Use an explicit $(EXEEXT).
(install-exec-local): When handling $(noinst_PROGRAMS), only use
$(EXEEXT) on the installed file. When handling $(TOOL_PROGS),

View File

@ -304,6 +304,7 @@ install-exec-local: $(bin_PROGRAMS) $(noinst_PROGRAMS)
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/.new//'|sed '$(transform)'`$(EXEEXT); \
else :; fi; \
done
$(mkinstalldirs) $(tooldir)/bin
for i in $(TOOL_PROGS); do \
if [ -f $$i ]; then \
j=`echo $$i | sed -e 's/.new//' -e 's/$(EXEEXT)//'`; \

View File

@ -1008,6 +1008,7 @@ install-exec-local: $(bin_PROGRAMS) $(noinst_PROGRAMS)
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/.new//'|sed '$(transform)'`$(EXEEXT); \
else :; fi; \
done
$(mkinstalldirs) $(tooldir)/bin
for i in $(TOOL_PROGS); do \
if [ -f $$i ]; then \
j=`echo $$i | sed -e 's/.new//' -e 's/$(EXEEXT)//'`; \