diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2005-05-03 18:44:29 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2005-05-03 18:44:29 +0000 |
commit | 746d3bb3ba53bc8c4b3931277934035b3c345b79 (patch) | |
tree | 4e6eec70934730621754b5819030850e33d61280 | |
parent | eebec83e7a20572d6c389c30ac4702efeeaeb27d (diff) | |
download | xine-lib-746d3bb3ba53bc8c4b3931277934035b3c345b79.tar.gz xine-lib-746d3bb3ba53bc8c4b3931277934035b3c345b79.tar.bz2 |
**BUGFIX**
Shell quoting fix.
CVS patchset: 7515
CVS date: 2005/05/03 18:44:29
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index 325a32fef..e486fc43e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -18,7 +18,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA # -# $Id: autogen.sh,v 1.16 2004/10/08 20:22:29 mroi Exp $ +# $Id: autogen.sh,v 1.17 2005/05/03 18:44:29 dsalt Exp $ # # Maintained by Stephen Torri <storri@users.sourceforge.net> # @@ -297,6 +297,6 @@ case "$1" in run_autoheader run_automake run_autoconf - run_configure $@ + run_configure "$@" ;; esac |