diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-20 23:13:30 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-20 23:13:30 -0400 |
commit | 5c7b1e03c1a9a3405608a78c11823048a3f3ea2f (patch) | |
tree | 357ed6eb4d8e78b6abdbcbbaedcc9e77da7344ab /config.mk | |
parent | ca2b38d5ef1d6e4756b64d2b5a275c9891802f28 (diff) |
fiddle with file locations
I remember now that config.mk's change to ?= was so that xbs Makefiles
could override $(binder). That was stupid.
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -4,22 +4,22 @@ # Note: In the default version of this file, commented out values indicate what # the GNU standards dictate, when our values differ. -DESTDIR ?= +DESTDIR = -#prefix ?= /usr/local -prefix ?= /usr -exec_prefix ?= $(prefix) -bindir ?= $(exec_prefix)/bin -#libexecdir ?= $(exec_prefix)/libexec -libexecdir ?= $(exec_prefix)/lib +#prefix = /usr/local +prefix = /usr +exec_prefix = $(prefix) +bindir = $(exec_prefix)/bin +#libexecdir = $(exec_prefix)/libexec +libexecdir = $(exec_prefix)/lib -datarootdir ?= $(prefix)/share -datadir ?= $(datarootdir) -#sysconfdir ?= $(prefix)/etc -sysconfdir ?= /etc +datarootdir = $(prefix)/share +datadir = $(datarootdir) +#sysconfdir = $(prefix)/etc +sysconfdir = /etc -docdir ?= $(datarootdir)/doc -mandir ?= $(datarootdir)/man +docdir = $(datarootdir)/doc +mandir = $(datarootdir)/man -devtoolsdir ?= $(topdir)/../devtools-par -RONNFLAGS ?= --manual='libretools Manual' --organization='Parabola' +devtoolsdir = $(topdir)/../devtools-par +RONNFLAGS = --manual='libretools Manual' --organization='Parabola' |