diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2013-01-04 22:25:33 +0100 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2013-01-04 22:25:33 +0100 |
commit | 5521a5f57f91e75ba77e127eccd08a9a833417bb (patch) | |
tree | aca7d516775d7b4a710654fa290ca91e335c2c5b /main/doxygen | |
parent | 0ad11c34de82ee68825d6fa97cf5081e5cd59d34 (diff) | |
download | aports-5521a5f57f91e75ba77e127eccd08a9a833417bb.tar.bz2 aports-5521a5f57f91e75ba77e127eccd08a9a833417bb.tar.xz |
main/doxygen: fix build on eglibc
Diffstat (limited to 'main/doxygen')
-rw-r--r-- | main/doxygen/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/doxygen/APKBUILD b/main/doxygen/APKBUILD index 6c7755f2c8..4de4eedae4 100644 --- a/main/doxygen/APKBUILD +++ b/main/doxygen/APKBUILD @@ -23,7 +23,8 @@ prepare() { # Ensure we link to -liconv for pro in */*.pro.in */*/*.pro.in; do - echo "unix:LIBS += -liconv" >> "${pro}" + [ "$ALPINE_LIBC" != "eglibc" ] && \ + echo "unix:LIBS += -liconv" >> "${pro}" done # fix final DESTDIR issue |