From 1647fef93aeff1c3dc8388f7c87055a6aa97ba49 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Mon, 13 Jun 2016 22:43:27 +0200 Subject: [PATCH] newapkbuild: add empty line after builddir= and quote whole value --- newapkbuild.in | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/newapkbuild.in b/newapkbuild.in index d19e197..ce9fd8f 100644 --- a/newapkbuild.in +++ b/newapkbuild.in @@ -193,7 +193,6 @@ makedepends="$makedepends" install="$install" subpackages="\$pkgname-dev \$pkgname-doc" source="$source" - __EOF__ abuild -f fetch unpack @@ -202,10 +201,9 @@ __EOF__ if [ -d "$i" ]; then sdir=$i builddir=$(echo ${i#*/} | sed "s/$pv/\$pkgver/g") - builddir="\"\$srcdir\"/$builddir" fi done - echo "builddir=$builddir" >> APKBUILD + printf 'builddir="$srcdir/%s"\n\n' "$builddir" >> APKBUILD # Subpackage -dev is usually required only for C/C++. Since depends_dev # confuses a lot people, remove it if there's no .h or .hpp file.