aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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)