summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ltmain.sh2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0ab5789f1..b587fcb94 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Sep 11 11:28:24 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
+
+ * ltmain.sh: Added a missing '\' before \n on line 32.
+
Thu Aug 28 23:40:43 1997 Jim Blandy <jimb@totoro.red-bean.com>
New libtool: 1.0b.
diff --git a/ltmain.sh b/ltmain.sh
index 6b061eebd..09bbad64d 100644
--- a/ltmain.sh
+++ b/ltmain.sh
@@ -29,7 +29,7 @@ else
# This makes it impossible to quote backslashes using
# echo "$something" | sed 's/\\/\\\\/g'
# So, we emulate echo with printf '%s\n'
- echo='printf %s\n'
+ echo='printf %s\\n'
if test X`$echo '\t'` = 'X\t'; then :
else
# Oops. We have no working printf. Try to find a not-so-buggy echo.