diff options
author | Dan McGee <dan@archlinux.org> | 2007-05-29 23:46:20 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-05-29 23:46:20 +0200 |
commit | f3836ff8e8f3dbb25b8b5161a14004a5fc08554a (patch) | |
tree | a08ec4e3d94305cdbe6e2e1627780182d6ad0927 /scripts/pacman-optimize.in | |
parent | 103c7243a2d50dd46c0b5efefdc2e1b1d24e30e0 (diff) | |
download | pacman-f3836ff8e8f3dbb25b8b5161a14004a5fc08554a.tar.gz pacman-f3836ff8e8f3dbb25b8b5161a14004a5fc08554a.tar.xz |
Set paths in pacman-optimize to use configure-time paths
By setting up a few more AC_SUBST macros in configure.ac, we can fill in
paths in the scripts on the fly instead of having them in multiple places.
Other small fixes:
* Fix an oops on my last commit where I had some lines stil commented.
* Fix makepkg bug where the generated package name using PKGEXT had two
periods (..).
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts/pacman-optimize.in')
-rw-r--r-- | scripts/pacman-optimize.in | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/scripts/pacman-optimize.in b/scripts/pacman-optimize.in index cce4a5c1..ca6378f2 100644 --- a/scripts/pacman-optimize.in +++ b/scripts/pacman-optimize.in @@ -21,11 +21,8 @@ # myver='@PACKAGE_VERSION@' -#TODO replace with configure-time db location -dbroot="/var/lib/pacman" -#TODO replace with configure-time lockfile location -lockfile="/tmp/pacman.lck" - +dbroot='@ROOTDIR@@DBPATH@' +lockfile='@ROOTDIR@@LOCKFILE@' error() { if [ "$USECOLOR" = "YES" -o "$USECOLOR" = "yes" ]; then @@ -36,8 +33,8 @@ error() { } # determine current USECOLOR setting -#[ -f "/etc/rc.conf" ] && source /etc/rc.conf -#[ -f "/etc/rc.d/functions" ] && source /etc/rc.d/functions +[ -f "/etc/rc.conf" ] && source /etc/rc.conf +[ -f "/etc/rc.d/functions" ] && source /etc/rc.d/functions usage() { echo "pacman-optimize (pacman) $myver" |