Commit d8058091 by Maciej W. Rozycki Committed by Jeff Law

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

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
parent 092417da
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.
......
......@@ -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 ; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment