diff options
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. |