diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-06-15 17:14:02 -0600 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-06-15 18:03:05 -0600 |
commit | db321a9205d8902f71be4a6e296ff4b1ae5c6573 (patch) | |
tree | f22b2f6c3927811da47d6a1dd99c6e912b975696 | |
parent | 7b32b8e5eb7cdc8939042ab665f1b80f03036132 (diff) |
config.mk: change default value for sbindir to be the same as bindir
-rw-r--r-- | config.mk | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,13 +1,17 @@ # Configuration # Note: $(topdir) is set to the directory containing this file. +# Note: In the default version of this file, commented out values indicate what +# the GNU standards dicate, when our values differ. + DESTDIR= #prefix=/usr/local prefix=/usr exec_prefix=$(prefix) bindir=$(exec_prefix)/bin -sbindir=$(exec_prefix)/sbin +#sbindir=$(exec_prefix)/sbin +sbindir=$(exec_prefix)/bin #libexecdir=$(exec_prefix)/libexec libexecdir=$(exec_prefix)/lib |