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/hyper | |
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/hyper')
-rw-r--r-- | src/hyper/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hyper/Makefile.in b/src/hyper/Makefile.in index 2c968607..034180f3 100644 --- a/src/hyper/Makefile.in +++ b/src/hyper/Makefile.in @@ -159,10 +159,10 @@ ${HYPER}/pages/ht.db: all-hyper-pre $(srcdir)/pages/*.pht ${OUTLIB}/htsearch: htsearch - $(INSTALL_PROGRAM) $< $@ + cp -p $< $@ ${OUTLIB}/presea: presea - $(INSTALL_PROGRAM) $< $@ + cp -p $< $@ ${OUTLIB}/ex2ht$(EXEEXT): $(ex2ht_objects) $(ex2ht_DEPENDENCIES) ${LINK} -o $@ $(ex2ht_objects) $(ex2ht_LDADD) |