>>>>> "SPM" == Shane P McCarron <ahby@themacs.com> writes:
SPM> This makefile does not, it seems, change the perl script #! lines to
SPM> point to the perl binary as specified in the PERL makefile
SPM> configuration variable.
Doh!
--- Makefile Thu Nov 28 13:10:25 1996
+++ ../majordomo-1.94.1/Makefile Thu Nov 28 13:05:55 1996
@@ -150,14 +150,14 @@
@for file in $(BINBIN); do \
$(INSTALL) -m $(EXEC_MODE) $(INSTALL_FLAGS) \
- $$file $(W_HOME)/bin/$$file; \
+ $(TMP)/$$file $(W_HOME)/bin/$$file; \
done
@echo "Copying Majordomo files to $(W_HOME)"
@for file in $(BIN); do \
$(INSTALL) -m $(EXEC_MODE) $(INSTALL_FLAGS) \
- $$file $(W_HOME)/$$file; \
+ $(TMP)/$$file $(W_HOME)/$$file; \
done
@echo "Copying archiving and other tools to $(W_HOME)/Tools"
@@ -166,7 +166,7 @@
@for file in $(TOOLS); do \
$(INSTALL) -m $(EXEC_MODE) $(INSTALL_FLAGS) \
- contrib/$$file $(W_HOME)/Tools/$$file; \
+ $(TMP)/$$file $(W_HOME)/Tools/$$file; \
done
@rm -rf $(TMP)
I think that covers it.
- J<
References:
|
|