diff options
-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 |