diff options
Diffstat (limited to 'system/tcl/APKBUILD')
-rw-r--r-- | system/tcl/APKBUILD | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/system/tcl/APKBUILD b/system/tcl/APKBUILD index 9bd27f90c..e12202883 100644 --- a/system/tcl/APKBUILD +++ b/system/tcl/APKBUILD @@ -33,7 +33,6 @@ build() { case "$CARCH" in x86_64) _64bit="--enable-64bit";; esac - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -47,7 +46,6 @@ build() { } package() { - cd "$builddir" export LD_LIBRARY_PATH="$_builddir" make -j1 INSTALL_ROOT="${pkgdir}" install install-private-headers @@ -59,8 +57,6 @@ package() { } check() { - cd "$builddir" - # thread-4.5 and thread-5* is suppressed because it tests UB # http* is suppressed because it tries to do network i/o # unixInit-3* is suppressed due to hardcoded locale assumptions @@ -69,7 +65,7 @@ check() { dev() { default_dev - cd $pkgdir + cd "$pkgdir" for i in $(find . -name '*.c' -o -name '*Config.sh'); do mkdir -p "$subpkgdir"/${i%/*} mv $i "$subpkgdir"/${i%/*}/ || return 1 |