diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-12-21 21:37:59 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-12-21 21:37:59 +0100 |
commit | ca463b87887d8151b83d222dc35d461991c1dd63 (patch) | |
tree | 5fd14a2e1f57e17214ee81e47c74bd4e4115e104 /mk | |
parent | 414cf52c44c7caf09565c9286b9326ac8ac63428 (diff) |
another musl fix round
Diffstat (limited to 'mk')
-rw-r--r-- | mk/pkg-bottom.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/pkg-bottom.mk b/mk/pkg-bottom.mk index 0358c0382..dd8e81c41 100644 --- a/mk/pkg-bottom.mk +++ b/mk/pkg-bottom.mk @@ -180,7 +180,7 @@ ifneq (,$(filter dev,${PKG_OPTS})) done endif @-cd ${WRKINST}; \ - if [ "${PKG_NAME}" != "uClibc" -a "${PKG_NAME}" != "eglibc" -a "${PKG_NAME}" != "glibc" -a "${PKG_NAME}" != "libpthread" -a "${PKG_NAME}" != "libstdcxx" -a "${PKG_NAME}" != "libgcc" -a "${PKG_NAME}" != "libthread-db" -a "${PKG_NAME}" != "musl" ];then \ + if [ "${PKG_NAME}" != "uClibc" -a "${PKG_NAME}" != "eglibc" -a "${PKG_NAME}" != "glibc" -a "${PKG_NAME}" != "libpthread" -a "${PKG_NAME}" != "libstdcxx" -a "${PKG_NAME}" != "libgcc" -a "${PKG_NAME}" != "libthread-db" -a "${PKG_NAME}" != "musl" -a "${PKG_NAME}" != "pam" ];then \ find lib \( -name lib\*.so\* -o -name lib\*.a \) \ -exec echo 'WARNING: ${PKG_NAME} installs files in /lib -' \ ' fix this!' >&2 \; -quit 2>/dev/null; fi;\ |