]> git.ipfire.org Git - thirdparty/mlmmj.git/commitdiff
Remove 'bashisms' from mlmmj-make-ml script
authorBen Schmidt <none@none>
Sun, 22 Jan 2012 13:20:37 +0000 (00:20 +1100)
committerBen Schmidt <none@none>
Sun, 22 Jan 2012 13:20:37 +0000 (00:20 +1100)
(patch from Dan forwarded by Thomas Goirand).

ChangeLog
src/mlmmj-make-ml.in

index 046255177d827cd29b6d73e20157bf9645457f56..89cabd9179141eca0e94c4db44d89fd589695a94 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 8a00fd1c74b2741522ec4797723c90a9ce458cf4..f90c01470a0282456828849915ddb6611d198f45 100755 (executable)
@@ -21,7 +21,7 @@ while getopts ":hL:s:azc:" Option
 do
 case "$Option" in 
        h )
-       echo -e "$USAGE"
+       echo "$USAGE"
        exit 0
        ;;
        z )
@@ -42,7 +42,8 @@ case "$Option" in
        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