diff options
author | Dan McGee <dan@archlinux.org> | 2007-05-29 17:46:20 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-05-29 17:46:20 -0400 |
commit | f3836ff8e8f3dbb25b8b5161a14004a5fc08554a (patch) | |
tree | a08ec4e3d94305cdbe6e2e1627780182d6ad0927 /etc/makepkg.conf.in | |
parent | 103c7243a2d50dd46c0b5efefdc2e1b1d24e30e0 (diff) | |
download | 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 'etc/makepkg.conf.in')
-rw-r--r-- | etc/makepkg.conf.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/makepkg.conf.in b/etc/makepkg.conf.in index 6add6473..2f2809e2 100644 --- a/etc/makepkg.conf.in +++ b/etc/makepkg.conf.in @@ -92,9 +92,9 @@ DOC_DIRS=(usr/{,share/}{info,doc,gtk-doc} opt/gnome/{,share/}{info,doc,gtk-doc}) # WARNING: Do NOT modify these variables unless you know what you are # doing. # -BUILDSCRIPT="PKGBUILD" -PKGEXT=".pkg.tar.gz" -DB_COMPRESSION="gz" +BUILDSCRIPT='PKGBUILD' +PKGEXT='@PKGEXT@' +DB_COMPRESSION='gz' DB_CHECKSUMS=(md5) # vim: set ft=sh ts=2 sw=2 et: |