diff options
Diffstat (limited to 'packages-i486-stage1/net-tools')
-rw-r--r-- | packages-i486-stage1/net-tools | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages-i486-stage1/net-tools b/packages-i486-stage1/net-tools new file mode 100644 index 0000000..821bb63 --- /dev/null +++ b/packages-i486-stage1/net-tools @@ -0,0 +1,15 @@ +# prepare configure for cross-compilation +sed -i "s@make @make CC=$TARGET_ARCH-cc LD=$TARGET_ARCH-ld@g" PKGBUILD +sed -i "s@make\$@make CC=$TARGET_ARCH-cc LD=$TARGET_ARCH-ld @g" PKGBUILD + +# git for release checkouts, using the one from host +sed -i "/makedepends/s/git//g" PKGBUILD + +# apply patch for double definitons in ip.h +sed -i 's@source=(@source=(net-tools-1.60-if_tunnel.patch @' PKGBUILD +sed -i "s@sha1sums=(@sha1sums=('SKIP' @" PKGBUILD +sed -i '2!N; /prepare() {/ a \ pushd ${srcdir}/${pkgname}; patch -Np1 < ${srcdir}/net-tools-1.60-if_tunnel.patch; popd' PKGBUILD + +# TODO: wrong installation pathes, should be /usr/bin +# install: cannot create regular file '/bin/ifconfig': Permission denied +# make: *** [Makefile:216: installbin] Error 1 |