diff options
author | rubidium <rubidium@openttd.org> | 2008-10-05 11:52:24 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-10-05 11:52:24 +0000 |
commit | d6802b0b5b9aab7da2c3cfcf3cc35eb5d3cfdff5 (patch) | |
tree | da853ea874116a8aa4629e1d4a2364a4d36a02ae | |
parent | d26e500ef443e7f47ca6defb4bb3c1e0bae487df (diff) | |
download | openttd-d6802b0b5b9aab7da2c3cfcf3cc35eb5d3cfdff5.tar.xz |
(svn r14440) -Fix [FS#1802]: support for spaces in directories passed to ./configure.
NOTE: this does NOT support OpenTTD to be build in paths with a space in it as one cannot make "make" aware whether a space belongs to a file name or whether it's a separator between file names.
-rw-r--r-- | config.lib | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/config.lib b/config.lib index abbceb323..364b03a67 100644 --- a/config.lib +++ b/config.lib @@ -390,7 +390,7 @@ save_params() { configure="$CONFIGURE_EXECUTABLE --ignore-extra-parameters" for p in $save_params_array; do eval "v=\"\$$p\"" - p=`echo "$p" | sed 's/_/-/g;s/\n//g;'` + p=`echo "$p" | sed 's/_/-/g;s/\n//g;s/ /\\ /g'` # Only save those params that aren't empty configure="$configure --$p=\"$v\"" done @@ -845,6 +845,8 @@ check_params() { else doc_dir="$data_dir/docs" fi + else + doc_dir="`echo $doc_dir | sed 's/\([^\]\)\\\\ /\1\\\\\\\\ /g;s/\([^\]\) /\1\\\\\\\\ /g'`" fi if [ "$icon_theme_dir" = "1" ]; then @@ -853,6 +855,8 @@ check_params() { else icon_theme_dir="" fi + else + icon_theme_dir="`echo $icon_theme_dir | sed 's/\([^\]\)\\\\ /\1\\\\\\\\ /g;s/\([^\]\) /\1\\\\\\\\ /g'`" fi if [ "$personal_dir" = "1" ]; then @@ -863,6 +867,8 @@ check_params() { else personal_dir=".openttd" fi + else + personal_dir="`echo $personal_dir | sed 's/\([^\]\)\\\\ /\1\\\\\\\\ /g;s/\([^\]\) /\1\\\\\\\\ /g'`" fi if [ "$shared_dir" = "1" ]; then @@ -872,6 +878,8 @@ check_params() { else shared_dir="" fi + else + shared_dir="`echo $shared_dir | sed 's/\([^\]\)\\\\ /\1\\\\\\\\ /g;s/\([^\]\) /\1\\\\\\\\ /g'`" fi if [ "$man_dir" = "1" ]; then @@ -881,6 +889,8 @@ check_params() { else man_dir="" fi + else + man_dir="`echo $man_dir | sed 's/\([^\]\)\\\\ /\1\\\\\\\\ /g;s/\([^\]\) /\1\\\\\\\\ /g'`" fi if [ "$menu_dir" = "1" ]; then @@ -890,6 +900,8 @@ check_params() { else menu_dir="" fi + else + menu_dir="`echo $menu_dir | sed 's/\([^\]\)\\\\ /\1\\\\\\\\ /g;s/\([^\]\) /\1\\\\\\\\ /g'`" fi # "set_universal_binary_flags" needs to be before "detect_iconv" |