aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-04-13 20:40:17 +0000
committerdos-reis <gdr@axiomatics.org>2009-04-13 20:40:17 +0000
commit87ab9ee004e7f92ef7d3c79110ac4c124cea0616 (patch)
tree89fd78852c77f926f99ef7641d86fa4069c6e981 /src
parent865463536e19a517fecb78ddc9bfdfa4088e0b71 (diff)
downloadopen-axiom-87ab9ee004e7f92ef7d3c79110ac4c124cea0616.tar.gz
Fix SF/2757748
* hyper/Makefile.in (${OUTLIB}/htsearch): Insist on execution bit. (${OUTLIB}/presea): Likewise.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/hyper/Makefile.in4
2 files changed, 8 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 50686acf..be6550a2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
+2009-04-13 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
+ Fix SF/2757748
+ * hyper/Makefile.in (${OUTLIB}/htsearch): Insist on execution bit.
+ (${OUTLIB}/presea): Likewise.
+
2009-04-11 Gabriel Dos Reis <gdr@cs.tamu.edu>
Fix SF/2754400
diff --git a/src/hyper/Makefile.in b/src/hyper/Makefile.in
index 755eb74e..12cbc140 100644
--- a/src/hyper/Makefile.in
+++ b/src/hyper/Makefile.in
@@ -162,10 +162,10 @@ ${HYPER}/pages/ht.db: all-hyper-pre $(srcdir)/pages/*.pht
${OUTLIB}/htsearch: htsearch
- cp -p $< $@
+ cp -p $< $@ && chmod +x $@
${OUTLIB}/presea: presea
- cp -p $< $@
+ cp -p $< $@ && chmod +x $@
${OUTLIB}/ex2ht$(EXEEXT): $(ex2ht_objects) $(ex2ht_DEPENDENCIES)
${LINK} -o $@ $(ex2ht_objects) $(ex2ht_LDADD)