Merge branch 'maint'

This commit is contained in:
Dan McGee 2011-05-04 15:54:42 -05:00
commit 991bfb7cbf
2 changed files with 7 additions and 3 deletions

View File

@ -13,8 +13,12 @@ source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('ee5ae84d115f051d87fcaaef3b4ae782')
build() {
cd $srcdir/$pkgname-$pkgver
cd "$srcdir"/$pkgname-$pkgver
./configure --prefix=/usr
make
make prefix=$pkgdir/usr install
}
package() {
cd "$srcdir"/$pkgname-$pkgver
make prefix="$pkgdir"/usr install
}

View File

@ -1080,7 +1080,7 @@ create_package() {
*tar.bz2) bzip2 -c -f ;;
*tar.xz) xz -c -z - ;;
*tar) cat ;;
esac > ${pkg_file} || ret=$?
esac > "${pkg_file}" || ret=$?
shopt -u nullglob
shopt -u -o pipefail