newapkbuild: rename _builddir to builddir

the _builddir should never been used bu abuild due to the _ prefix.
This commit is contained in:
Natanael Copa 2016-03-23 09:58:16 +00:00
parent a1d23dc995
commit 270e5337e7
1 changed files with 6 additions and 6 deletions

View File

@ -197,15 +197,15 @@ source="$source"
__EOF__
abuild -f fetch unpack
# Figure out the _builddir
# Figure out the builddir
for i in src/*; do
if [ -d "$i" ]; then
sdir=$i
_builddir=$(echo ${i#*/} | sed "s/$pv/\$pkgver/g")
_builddir="\"\$srcdir\"/$_builddir"
builddir=$(echo ${i#*/} | sed "s/$pv/\$pkgver/g")
builddir="\"\$srcdir\"/$_builddir"
fi
done
echo "_builddir=$_builddir" >> APKBUILD
echo "builddir=$builddir" >> APKBUILD
# Check if its autotools
if [ -z "$buildtype" ]; then
@ -227,7 +227,7 @@ __EOF__
# Create build() function
cat >>APKBUILD<<__EOF__
build() {
cd "\$_builddir"
cd "\$builddir"
__EOF__
case "$buildtype" in
@ -251,7 +251,7 @@ __EOF__
# Create package() function
cat >>APKBUILD<<__EOF__
package() {
cd "\$_builddir"
cd "\$builddir"
__EOF__
case "$buildtype" in