diff options
author | Nicolas Thill <nico@openwrt.org> | 2015-02-14 13:53:51 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2015-02-14 13:53:51 +0000 |
commit | d0cf5a05304e53600fd60ebce27ce83d9c350675 (patch) | |
tree | 81bf433d9a280c94fc4c70c2b9c021e299e57932 | |
parent | 40c0261f34f69ee8dbe24dac926592581e1fdd58 (diff) | |
download | upstream-d0cf5a05304e53600fd60ebce27ce83d9c350675.tar.gz upstream-d0cf5a05304e53600fd60ebce27ce83d9c350675.tar.bz2 upstream-d0cf5a05304e53600fd60ebce27ce83d9c350675.zip |
package/valgrind: fix build on eglibc
configure tries to guess pagesize by calling getconf, provided by eglibc and compiled for the target, not the host.
Signed-off-by: Nicolas Thill <nico@openwrt.org>
SVN-Revision: 44445
-rw-r--r-- | package/devel/valgrind/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/devel/valgrind/Makefile b/package/devel/valgrind/Makefile index e2c7f67280..354e3c417f 100644 --- a/package/devel/valgrind/Makefile +++ b/package/devel/valgrind/Makefile @@ -101,7 +101,8 @@ CONFIGURE_ARGS += \ --disable-valgrindmi \ --disable-tui \ --disable-valgrindtk \ - --without-included-gettext + --without-included-gettext \ + --with-pagesize=4 \ define Package/valgrind/install $(INSTALL_DIR) $(1)/usr/bin |