diff options
author | dos-reis <gdr@axiomatics.org> | 2008-08-04 11:54:10 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-08-04 11:54:10 +0000 |
commit | 9be80497b8fe2bdfab08fded15e148c1489cc1d5 (patch) | |
tree | 42f751e4b7f3beb1b29b5da556663f2b9431c195 /src/boot | |
parent | 73151fa381c122cbaa7a32e2baf14b9e731d6791 (diff) | |
download | open-axiom-9be80497b8fe2bdfab08fded15e148c1489cc1d5.tar.gz |
* Makefile.pamphlet: Use $(mkdir_p) in lieu of $(mkinstalldirs),
during build. Also use 'cp -p' instead of $(INSTALL).
* algebra/Makefile.pamphlet: Likewise.
* graph/Makefile.in: Likewise.
* boot/Makefile.in: Likewise.
* hyper/Makefile.in: Likewise.
* input/Makefile.pamphlet: Likewise.
* interp/Makefile.pamphlet: Likewise.
* lib/Makefile.in: Likewise.
* lisp/Makefile.in: Likewise.
* share/Makefile.in: Likewise.
Diffstat (limited to 'src/boot')
-rw-r--r-- | src/boot/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/boot/Makefile.in b/src/boot/Makefile.in index f8d57bd9..bbb17612 100644 --- a/src/boot/Makefile.in +++ b/src/boot/Makefile.in @@ -86,8 +86,8 @@ stamp: $(axiom_target_bindir)/bootsys$(EXEEXT) ## The final `bootsys' image. $(axiom_target_bindir)/bootsys$(EXEEXT): stage2/bootsys$(EXEEXT) - $(mkinstalldirs) $(axiom_target_bindir) - $(INSTALL_PROGRAM) $< $@ + $(mkdir_p) $(axiom_target_bindir) + cp -p $< $@ .PRECIOUS: strap/%.$(FASLEXT) @@ -169,7 +169,7 @@ stage2/%.clisp: %.boot stage1/stamp stage2/.started .PRECIOUS: %/.started %/.started: - $(mkinstalldirs) $* + $(mkdir_p) $* $(STAMP) $@ ## Dependency for various modules. |