diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-02-27 15:39:27 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-02-27 15:39:27 +0000 |
commit | 073c5e0e74f504b9b63d51b3e5b092bde144e66b (patch) | |
tree | 6a95670d57f82b6c7a659152decc2bae9ba68492 /include | |
parent | c864843cbfc712648e81d62ce44d9e2d09cc3765 (diff) | |
download | upstream-073c5e0e74f504b9b63d51b3e5b092bde144e66b.tar.gz upstream-073c5e0e74f504b9b63d51b3e5b092bde144e66b.tar.bz2 upstream-073c5e0e74f504b9b63d51b3e5b092bde144e66b.zip |
add config.rpath and link it in autotools.mk if missing, some packages might need it, especially users of lib-link.m4 or iconv.m4
SVN-Revision: 25753
Diffstat (limited to 'include')
-rw-r--r-- | include/autotools.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/autotools.mk b/include/autotools.mk index 24f9b721dd..7797031fd6 100644 --- a/include/autotools.mk +++ b/include/autotools.mk @@ -41,6 +41,8 @@ define autoreconf -B $(STAGING_DIR_HOST)/share/aclocal \ $(patsubst %,-I %,$(5)) \ $(patsubst %,-I %,$(4)) $(4) || true; \ + [ -e $(p)/config.rpath ] || \ + ln -s $(SCRIPT_DIR)/config.rpath $(p)/config.rpath; fi; \ ) \ ); |