* convert-archive.in: Don't use non-portable 'if ! COMMAND'.
Reported by Stefano Lattarini in:
<https://lists.gnu.org/archive/html/bug-gettext/2011-07/msg00002.html>.
+2014-09-01 Daiki Ueno <ueno@gnu.org>
+
+ * convert-archive.in: Don't use non-portable 'if ! COMMAND'.
+ Reported by Stefano Lattarini in:
+ <https://lists.gnu.org/archive/html/bug-gettext/2011-07/msg00002.html>.
+
2014-07-14 Daiki Ueno <ueno@gnu.org>
* gettext 0.19.2 released.
# Command-line option processing.
-if ! { { test $# = 2 || test $# = 3 || test $# = 4; } \
+if { { test $# = 2 || test $# = 3 || test $# = 4; } \
&& case "$1" in dir | cvs | git ) true;; *) false;; esac \
&& case "$2" in dir | cvs | git ) true;; *) false;; esac; }; then
+ :
+else
echo "Usage: convert-archive {dir|cvs|git} {dir|cvs|git} [fromfile [tofile]]"
exit 1
fi