newapkbuild: remove obsolete cd statements

Since `$builddir` is officially supported and abuild automatically cd's to `$builddir`, it does not need to be part of the template anymore.
This commit is contained in:
Ikke 2019-04-22 22:39:00 +02:00 committed by Natanael Copa
parent 369e7069b8
commit f83d19ce79
1 changed files with 0 additions and 3 deletions

View File

@ -266,7 +266,6 @@ __EOF__
# Create build() function
cat >>APKBUILD<<__EOF__
build() {
cd "\$builddir"
__EOF__
case "$buildtype" in
@ -292,7 +291,6 @@ __EOF__
# Create check() function
cat >>APKBUILD<<__EOF__
check() {
cd "\$builddir"
__EOF__
case "$buildtype" in
@ -310,7 +308,6 @@ __EOF__
# Create package() function
cat >>APKBUILD<<__EOF__
package() {
cd "\$builddir"
__EOF__
case "$buildtype" in