Make-lang.in (CHILL.install-common): Use $(INSTALL_SCRIPT), not $(INSTALL_PROGRAM) for chill.install.

* Make-lang.in (CHILL.install-common): Use $(INSTALL_SCRIPT), not
        $(INSTALL_PROGRAM) for chill.install.

From-SVN: r34525
This commit is contained in:
Maciej W. Rozycki 2000-06-13 23:31:26 +02:00 committed by Jeff Law
parent 092417da9f
commit d805809112
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Tue Jun 13 15:30:46 2000 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
* Make-lang.in (CHILL.install-common): Use $(INSTALL_SCRIPT), not
$(INSTALL_PROGRAM) for chill.install.
2000-06-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* Makefile.in (EXPR_H): New dependency variable.

View File

@ -132,11 +132,11 @@ CHILL.install-common:
if [ -f chill.install ] ; then \
if [ -f gcc-cross$(exeext) ]; then \
rm -f $(bindir)/$(CHILL_CROSS_NAME); \
$(INSTALL_PROGRAM) chill.install $(bindir)/$(CHILL_CROSS_NAME); \
$(INSTALL_SCRIPT) chill.install $(bindir)/$(CHILL_CROSS_NAME); \
chmod a+x $(bindir)/$(CHILL_CROSS_NAME); \
else \
rm -f $(bindir)/$(CHILL_INSTALL_NAME); \
$(INSTALL_PROGRAM) chill.install $(bindir)/$(CHILL_INSTALL_NAME); \
$(INSTALL_SCRIPT) chill.install $(bindir)/$(CHILL_INSTALL_NAME); \
chmod a+x $(bindir)/$(CHILL_INSTALL_NAME); \
fi ; \
fi ; \