diff options
author | lloyd <[email protected]> | 2011-05-26 23:21:58 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-05-26 23:21:58 +0000 |
commit | 549d1530ee0a559a91d4f701dc7e5d630c4c9ff3 (patch) | |
tree | d06fc18459427000cbf159847d8226e22b0a5e0b /src | |
parent | 1a282af78a78759668d5210ff5aae8248618f416 (diff) |
MinGW install commands are the default, so don't specify explicitly.
On Solaris, use /usr/ucb/install, as /usr/sbin/install uses some kind
of other strange syntax.
Diffstat (limited to 'src')
-rw-r--r-- | src/build-data/os/mingw.txt | 3 | ||||
-rw-r--r-- | src/build-data/os/solaris.txt | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/src/build-data/os/mingw.txt b/src/build-data/os/mingw.txt index 08f85b4db..5daabac90 100644 --- a/src/build-data/os/mingw.txt +++ b/src/build-data/os/mingw.txt @@ -14,9 +14,6 @@ header_dir include lib_dir lib doc_dir share/doc -install_cmd_data "install -m 644" -install_cmd_exec "install -m 755" - <aliases> msys mingw32 diff --git a/src/build-data/os/solaris.txt b/src/build-data/os/solaris.txt index 571c594d1..0ed785036 100644 --- a/src/build-data/os/solaris.txt +++ b/src/build-data/os/solaris.txt @@ -1,7 +1,7 @@ os_type unix -install_cmd_data 'cp' -install_cmd_exec 'cp' +install_cmd_data '/usr/ucb/install -m 644' +install_cmd_exec '/usr/ucb/install -m 755' <target_features> posix_mlock |