diff options
author | lloyd <[email protected]> | 2009-07-01 18:39:46 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-01 18:39:46 +0000 |
commit | 461602d1d2662cdad9f898bc350d9074b267cc6a (patch) | |
tree | dfdcdccd0b72abb9a963453175f04a278c9a5b42 /src/build-data | |
parent | 0050518a350638e9969ab4fb226a3919b80d634a (diff) |
Make the install_cmd_{data,exec} items in the build-data files quoted,
since they often contain spaces. This doesn't matter to configure.pl's
hand-done regex 'parser', but it makes things more consistent and makes
it possible to use the shlex parser included with python to parse all of
the data files.
Also remove the unused <arch> entry in darwin - this information had
previously be removed from all the other files but I guess that one was
missed.
Diffstat (limited to 'src/build-data')
-rw-r--r-- | src/build-data/os/darwin | 7 | ||||
-rw-r--r-- | src/build-data/os/defaults | 4 | ||||
-rw-r--r-- | src/build-data/os/mingw | 4 | ||||
-rw-r--r-- | src/build-data/os/windows | 4 |
4 files changed, 6 insertions, 13 deletions
diff --git a/src/build-data/os/darwin b/src/build-data/os/darwin index aa28dc59b..298621216 100644 --- a/src/build-data/os/darwin +++ b/src/build-data/os/darwin @@ -14,13 +14,6 @@ doc_dir doc all </supports_shared> -<arch> -ia32 -amd64 -ppc -ppc64 # g5! -</arch> - <aliases> macosx </aliases> diff --git a/src/build-data/os/defaults b/src/build-data/os/defaults index 88fd82252..5648643a9 100644 --- a/src/build-data/os/defaults +++ b/src/build-data/os/defaults @@ -15,5 +15,5 @@ header_dir include lib_dir lib doc_dir share/doc -install_cmd_data install -m 644 -install_cmd_exec install -m 755 +install_cmd_data "install -m 644" +install_cmd_exec "install -m 755" diff --git a/src/build-data/os/mingw b/src/build-data/os/mingw index 8c41fbc21..eb25017fc 100644 --- a/src/build-data/os/mingw +++ b/src/build-data/os/mingw @@ -13,8 +13,8 @@ header_dir include lib_dir lib doc_dir share/doc -install_cmd_data install -m 644 -install_cmd_exec install -m 755 +install_cmd_data "install -m 644" +install_cmd_exec "install -m 755" <aliases> msys diff --git a/src/build-data/os/windows b/src/build-data/os/windows index 823c60d6c..a04d609b8 100644 --- a/src/build-data/os/windows +++ b/src/build-data/os/windows @@ -9,8 +9,8 @@ static_suffix lib install_root c:\Botan doc_dir docs -install_cmd_data copy -install_cmd_exec copy +install_cmd_data "copy" +install_cmd_exec "copy" <target_features> win32_virtual_lock |