1
0
mirror of https://github.com/moparisthebest/pacman synced 2025-02-28 09:21:53 -05:00

proto: remove missed $srcdir redundancies

Most of the redundant "cd $srcdir" in the prototypes were removed in commit
5f80d7af.  Fix the rest.

Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Allan McRae 2013-10-14 15:55:39 +10:00
parent dcfc247a2c
commit fb0f880f0a
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ noextract=()
md5sums=() #generate with 'makepkg -g'
prepare() {
cd "$srcdir/$pkgname-$pkgver"
cd "$pkgname-$pkgver"
patch -p1 -i "$srcdir/$pkgname-$pkgver.patch"
}

View File

@ -30,7 +30,7 @@ noextract=()
md5sums=() #generate with 'makepkg -g'
prepare() {
cd "$srcdir/$pkgname-$pkgver"
cd "$pkgname-$pkgver"
patch -p1 -i "$srcdir/$pkgname-$pkgver.patch"
}