diff options
author | Dan McGee <dan@archlinux.org> | 2007-06-04 10:19:28 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-06-04 17:00:30 -0400 |
commit | a094deacf4f6abbef10c6acf38190d4fa9d34f0e (patch) | |
tree | 3a955b25ffc6db5c87e78e54c11d9368493901ab /etc/Makefile.am | |
parent | 029a8a9d44c6d6c9e86671e23b3d20018d8821e0 (diff) | |
download | pacman-a094deacf4f6abbef10c6acf38190d4fa9d34f0e.tar.xz |
Start moving hardcoded paths out of libalpm
Move the defaults for RootDir, CacheDir, DBPath, and LockFile into
pacman.conf, just as LogFile was done before. Add a section to
alpm_parse_config to look for a LockFile directive.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'etc/Makefile.am')
-rw-r--r-- | etc/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/Makefile.am b/etc/Makefile.am index 733526c3..7ad9178e 100644 --- a/etc/Makefile.am +++ b/etc/Makefile.am @@ -13,6 +13,7 @@ MOSTLYCLEANFILES = $(dist_sysconf_DATA) #### Taken from the autoconf scripts Makefile.am #### edit = sed \ -e 's|@sysconfdir[@]|$(sysconfdir)|g' \ + -e 's|@localstatedir[@]|$(localstatedir)|g' \ -e 's|@prefix[@]|$(prefix)|g' \ -e 's|@PACKAGE_VERSION[@]|$(PACKAGE_VERSION)|g' \ -e 's|@PACKAGE_NAME[@]|$(PACKAGE_NAME)|g' \ @@ -21,7 +22,8 @@ edit = sed \ -e 's|@CARCH[@]|$(CARCH)|g' \ -e 's|@CHOST[@]|$(CHOST)|g' \ -e 's|@ARCHSWITCH[@]|$(ARCHSWITCH)|g' \ - -e 's|@CARCHFLAGS[@]|$(CARCHFLAGS)|g' + -e 's|@CARCHFLAGS[@]|$(CARCHFLAGS)|g' \ + -e 's|@ROOTDIR[@]|$(ROOTDIR)|g' $(dist_sysconf_DATA): Makefile rm -f $@ $@.tmp |