diff options
author | Sam Bingner <sam@bingner.com> | 2020-08-28 13:17:10 -1000 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2020-08-28 13:17:10 -1000 |
commit | a5754305d822b112af2287de47c0e0f3241a25a4 (patch) | |
tree | 527ab668171b1b2209439c1cf9e41fd7fac8be3d | |
parent | 1768d7e2016bc9341175ce7632faf7ec1ff3ac2d (diff) |
Don't log to a subdirectory
-rw-r--r-- | data/_dpkg/make.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/data/_dpkg/make.sh b/data/_dpkg/make.sh index ce6a3caa1..806bef081 100644 --- a/data/_dpkg/make.sh +++ b/data/_dpkg/make.sh @@ -2,8 +2,11 @@ pkg:setup pkg: cp %/macho.mgc . pkg: cp %/sign.{c,h} lib/dpkg/ autoreconf +if [ "${PKG_ARCH}" != "iphoneos-arm" ]; then + sed -ie "s/iphoneos-arm/${PKG_ARCH}/" data/tupletable +fi #autoconf #cp -a libcompat/obstack.[ch] lib -pkg:configure --with-admindir=/var/lib/dpkg --disable-start-stop-daemon --disable-nls --sysconfdir=/etc --disable-linker-optimisations dpkg_cv_va_copy=yes --enable-static=yes --enable-shared=no --with-dpkg-deb-compressor=gzip --with-logdir=/var/log/dpkg TAR=tar PERL_LIBDIR="$("$(PKG_WORK_ perl)"/perl-5*/miniperl_top -e 'use Config; print $Config{vendorlib};')" PERL=/usr/bin/perl +pkg:configure --with-admindir=/var/lib/dpkg --disable-start-stop-daemon --disable-nls --sysconfdir=/etc --disable-linker-optimisations dpkg_cv_va_copy=yes --enable-static=yes --enable-shared=no --with-dpkg-deb-compressor=gzip --with-logdir=/var/log TAR=tar PERL_LIBDIR="$("$(PKG_WORK_ perl)"/perl-5*/miniperl_top -e 'use Config; print $Config{vendorlib};')" PERL=/usr/bin/perl pkg:make pkg:install |