diff options
author | lloyd <[email protected]> | 2008-04-06 23:04:44 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-04-06 23:04:44 +0000 |
commit | 404ef9b8b7bc57a0eedf0cfe321b9a49643aecd3 (patch) | |
tree | e7b9acd324e6329c6d4d340ee16138803a443022 /misc/config/os | |
parent | 8a5ffc5c6294786ad70f7a8fdd7606f411690ce9 (diff) |
Don't hard-code the user and group when doing an install: instead use
whatever the current user/group is. If you wish to override, edit the
makefile or override the INSTALL_CMD_* variables on the command line.
Diffstat (limited to 'misc/config/os')
-rw-r--r-- | misc/config/os/darwin | 2 | ||||
-rw-r--r-- | misc/config/os/defaults | 6 | ||||
-rw-r--r-- | misc/config/os/freebsd | 2 | ||||
-rw-r--r-- | misc/config/os/netbsd | 2 | ||||
-rw-r--r-- | misc/config/os/openbsd | 2 | ||||
-rw-r--r-- | misc/config/os/solaris | 3 | ||||
-rw-r--r-- | misc/config/os/windows | 3 |
7 files changed, 2 insertions, 18 deletions
diff --git a/misc/config/os/darwin b/misc/config/os/darwin index 248dc3d97..aa28dc59b 100644 --- a/misc/config/os/darwin +++ b/misc/config/os/darwin @@ -8,8 +8,6 @@ so_suffix dylib ar_command "ar cr" ar_needs_ranlib yes -install_group wheel - doc_dir doc <supports_shared> diff --git a/misc/config/os/defaults b/misc/config/os/defaults index a22821e56..88fd82252 100644 --- a/misc/config/os/defaults +++ b/misc/config/os/defaults @@ -15,7 +15,5 @@ header_dir include lib_dir lib doc_dir share/doc -install_user root -install_group root -install_cmd_data install -o OWNER -g GROUP -m 644 -install_cmd_exec install -o OWNER -g GROUP -m 755 +install_cmd_data install -m 644 +install_cmd_exec install -m 755 diff --git a/misc/config/os/freebsd b/misc/config/os/freebsd index 6cc184d98..e58ade517 100644 --- a/misc/config/os/freebsd +++ b/misc/config/os/freebsd @@ -2,8 +2,6 @@ realname "FreeBSD" os_type unix -install_group wheel - <supports_shared> all </supports_shared> diff --git a/misc/config/os/netbsd b/misc/config/os/netbsd index da713e3a0..435d8f5e8 100644 --- a/misc/config/os/netbsd +++ b/misc/config/os/netbsd @@ -2,8 +2,6 @@ realname "NetBSD" os_type unix -install_group wheel - <supports_shared> all </supports_shared> diff --git a/misc/config/os/openbsd b/misc/config/os/openbsd index 9f966bf49..cb44bd115 100644 --- a/misc/config/os/openbsd +++ b/misc/config/os/openbsd @@ -2,8 +2,6 @@ realname "OpenBSD" os_type unix -install_group wheel - <supports_shared> all </supports_shared> diff --git a/misc/config/os/solaris b/misc/config/os/solaris index 58b458e9b..a1c1b40b3 100644 --- a/misc/config/os/solaris +++ b/misc/config/os/solaris @@ -2,9 +2,6 @@ realname "Solaris" os_type unix -install_cmd_data install -u OWNER -g GROUP -m 644 -install_cmd_exec install -u OWNER -g GROUP -m 755 - <supports_shared> all </supports_shared> diff --git a/misc/config/os/windows b/misc/config/os/windows index 2f21da309..6adff5154 100644 --- a/misc/config/os/windows +++ b/misc/config/os/windows @@ -12,9 +12,6 @@ doc_dir docs install_cmd_data copy install_cmd_exec copy -install_user <nil> -install_group <nil> - <supports_shared> #all </supports_shared> |