diff options
author | Allan McRae <allan@archlinux.org> | 2009-07-01 05:52:52 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2009-07-10 08:29:57 +0200 |
commit | 617e7d512ff6fb7d6c5e5232091b528148cc40c7 (patch) | |
tree | 5e9961f634a9d61b319b04b576c479a1d7431a99 | |
parent | c72b4543b69f5a80d254a3f408748e19db758947 (diff) | |
download | pacman-617e7d512ff6fb7d6c5e5232091b528148cc40c7.tar.gz pacman-617e7d512ff6fb7d6c5e5232091b528148cc40c7.tar.xz |
makepkg: clean up moving PKGINFO creation to a function
Someone forgot to commit this when pulling in the original patch
to his working branch...
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r-- | scripts/makepkg.sh.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index d52398c0..34e156ae 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -881,14 +881,13 @@ write_pkginfo() { fi local size=$(du -sk | awk '{print $1 * 1024}') - # write the .PKGINFO file msg2 "$(gettext "Generating .PKGINFO file...")" echo "# Generated by makepkg $myver" >.PKGINFO if [ "$INFAKEROOT" -eq 1 ]; then echo "# using $(fakeroot -v)" >>.PKGINFO fi echo "# $(LC_ALL=C date -u)" >>.PKGINFO - echo "pkgname = $nameofpkg" >>.PKGINFO + echo "pkgname = $1" >>.PKGINFO echo "pkgver = $pkgver-$pkgrel" >>.PKGINFO echo "pkgdesc = $pkgdesc" >>.PKGINFO echo "url = $url" >>.PKGINFO |