summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BUGS2
-rw-r--r--package/autoconf/Makefile5
2 files changed, 6 insertions, 1 deletions
diff --git a/BUGS b/BUGS
index f08dabec5..0fc8adfe1 100644
--- a/BUGS
+++ b/BUGS
@@ -1,3 +1,5 @@
- openssh on amd64 does not work, ssh-keygen endless loop
- uclibc on lemote mips64 target does not work (only uclibc-trunk with patches)
- qemu-mips64* targets does not boot, kernel problem?
+- (cross-)compile from debian amd64 to f.e. qemu-x86_64 or shuttle with
+ either glibc or eglibc is broken, have sth. todo with target == host
diff --git a/package/autoconf/Makefile b/package/autoconf/Makefile
index 6e4abf3d6..e90c82f89 100644
--- a/package/autoconf/Makefile
+++ b/package/autoconf/Makefile
@@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= autoconf
PKG_VERSION:= 2.64
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_MD5SUM:= 30a198cef839471dd4926e92ab485361
PKG_DESCR:= GNU autoconf
PKG_SECTION:= utils
@@ -23,6 +23,9 @@ INSTALL_STYLE:= auto
post-install:
${INSTALL_DIR} ${IDIR_AUTOCONF}/usr/bin
+ ${INSTALL_DIR} ${IDIR_AUTOCONF}/usr/share/autoconf
${CP} ${WRKINST}/usr/bin/auto* ${IDIR_AUTOCONF}/usr/bin
+ ${CP} ${WRKINST}/usr/share/autoconf/* \
+ ${IDIR_AUTOCONF}/usr/share/autoconf
include ${TOPDIR}/mk/pkg-bottom.mk