diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-26 22:11:51 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-26 22:11:51 -0400 |
commit | ca6db7290cacee0d3b5ba836e6acea76ea314e50 (patch) | |
tree | 7cf3e4eda33335fdcc245d41e75a3b1602485266 /src/libretools.conf | |
parent | b159a370e2b1458c8c3817bdf3cabe2a630732e3 (diff) |
redo the library system; avoid hard-coded paths
* install all library files to $(libexecdir)/libretools, instead of
- $(bindir)
- $(datadir)/libretools
- $(datadir)/devtools
* symlink the executable library files into $(bindir)
* add the tool `librelib`
* instead of ". /path/to/lib.sh", use ". $(librelib lib.sh)"
* mark all libraries with shebangs of what options they support
* move blacklist.sh to libreblacklist
Diffstat (limited to 'src/libretools.conf')
-rw-r--r-- | src/libretools.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libretools.conf b/src/libretools.conf index 3477761..df0471e 100644 --- a/src/libretools.conf +++ b/src/libretools.conf @@ -88,11 +88,11 @@ TORUPATH=/var/lib/libretools/toru ################################################################################ if [[ -z ${INCLUDE_CONF_SH:-} ]]; then - . /usr/share/libretools/conf.sh + . $(librelib conf.sh) if [[ -e "$XDG_CONFIG_HOME/libretools/libretools.conf" ]]; then . "$XDG_CONFIG_HOME/libretools/libretools.conf" fi check_conf_libretools || exit $? - . /usr/bin/libremessages + . libremessages fi |