changeset 827:3c4d1e8bc452

Remove 'bashisms' from mlmmj-make-ml script (patch from Dan forwarded by Thomas Goirand).
author Ben Schmidt
date Mon, 23 Jan 2012 00:20:37 +1100
parents b03d3e3dac2b
children c7fef0950be6
files ChangeLog src/mlmmj-make-ml.in
diffstat 2 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Jan 25 23:45:10 2011 +0000
+++ b/ChangeLog	Mon Jan 23 00:20:37 2012 +1100
@@ -1,3 +1,5 @@
+ o Remove 'bashisms' from mlmmj-make-ml script (patch from Dan forwarded by
+   Thomas Goirand).
  o Automatically skip blank lines followed by unsatisfied conditionals with no
    else part in list texts
  o Automatically skip lines with only whitespace and directives in list texts
--- a/src/mlmmj-make-ml.in	Tue Jan 25 23:45:10 2011 +0000
+++ b/src/mlmmj-make-ml.in	Mon Jan 23 00:20:37 2012 +1100
@@ -21,7 +21,7 @@
 do
 case "$Option" in 
 	h )
-	echo -e "$USAGE"
+	echo "$USAGE"
 	exit 0
 	;;
 	z )
@@ -42,7 +42,8 @@
 	CHOWN="$OPTARG"
 	;;
 	* )
-	echo -e "$0: invalid option\nTry $0 -h for more information."
+	echo "$0: invalid option"
+	echo "Try $0 -h for more information."
 	exit 1
 esac
 done