# HG changeset patch # User Ben Schmidt # Date 1327238437 -39600 # Node ID 3c4d1e8bc4529da5d71ce0032cfb6a2eb8342bb6 # Parent b03d3e3dac2bb1e6ae259028d06393398f6af6e2 Remove 'bashisms' from mlmmj-make-ml script (patch from Dan forwarded by Thomas Goirand). diff -r b03d3e3dac2b -r 3c4d1e8bc452 ChangeLog --- 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 diff -r b03d3e3dac2b -r 3c4d1e8bc452 src/mlmmj-make-ml.in --- 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