diff options
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,6 @@ #!/bin/sh # -# $Id: autogen.sh,v 1.22.2.6 2015/03/11 17:10:10 devzero2000 Exp $ +# $Id: autogen.sh,v 1.22.2.7 2015/05/04 09:05:04 devzero2000 Exp $ # autogen.sh: autogen.sh script for popt projects # # Copyright (c) 2010-2015 Elia Pinto <devzero2000@rpm5.org> @@ -214,6 +214,7 @@ libtool 1.5.22 ################## ARGS="$*" # +DOWNLOAD=no for arg in $ARGS ; do case "x$arg" in x--help) usage && exit 0;; @@ -281,7 +282,7 @@ ls "$po_dir"/*.po 2>/dev/null | sed 's|.*/||; s|\.po$||' > "$po_dir/LINGUAS" # -[ ${DOWNLOAD} = "yes" ] && download_gnulib_config_guess +[ "${DOWNLOAD}" = "yes" ] && download_gnulib_config_guess echo Notice "done. Now you can run './configure'." ####################### |