diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-21 01:21:59 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-21 01:21:59 +0000 |
commit | e64e8125463de387720322e2fc84e2943811dfdf (patch) | |
tree | bbb1a55d0e9e9273304af2ec17cb34d025ae1f4a /system/tcl/APKBUILD | |
parent | 0bde1639103fa9dab748dc0bfc7d483c652e96a7 (diff) | |
download | packages-e64e8125463de387720322e2fc84e2943811dfdf.tar.gz packages-e64e8125463de387720322e2fc84e2943811dfdf.tar.bz2 packages-e64e8125463de387720322e2fc84e2943811dfdf.tar.xz packages-e64e8125463de387720322e2fc84e2943811dfdf.zip |
system/t*: modernise, fix metadata
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 |