diff options
author | Matthias Andree <mandree@FreeBSD.org> | 2011-08-11 17:18:16 +0000 |
---|---|---|
committer | Matthias Andree <mandree@FreeBSD.org> | 2011-08-11 17:18:16 +0000 |
commit | 6a8169e819f2259698c2ef054464613383d71e8a (patch) | |
tree | 5a0295682d25cc3995c80a35c3557e51a4fd57fe /sysutils/e2fsprogs/Makefile | |
parent | 86c2e2ecd85fcf53cfa4e2e53e2ddcdcc2e9e9c8 (diff) |
Notes
Diffstat (limited to 'sysutils/e2fsprogs/Makefile')
-rw-r--r-- | sysutils/e2fsprogs/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysutils/e2fsprogs/Makefile b/sysutils/e2fsprogs/Makefile index f3bcada2b3a9..f7fb48d5bc31 100644 --- a/sysutils/e2fsprogs/Makefile +++ b/sysutils/e2fsprogs/Makefile @@ -77,11 +77,12 @@ post-build: LIBINTL=${libintl} # Regression check: avoid a port (not upstream!) regression from 1.40.5, # check that e2fsck isn't dynalinked against anything but libc.so: - @${ECHO_CMD} -n "===> checking that e2fsck depends on no shared objects beyond libc.so: " + @${ECHO_CMD} -n "===> checking that e2fsck depends on no shared objects beyond libc and libgcc: " @a="$$(ldd ${WRKSRC}/e2fsck/e2fsck 2>/dev/null \ | ${GREP} -v 'not a dynamic executable' \ | ${GREP} '=>' \ | ${AWK} '{print $$3;}' \ + | ${EGREP} -v '^/lib/libgcc(_s)?\.so\.' \ | ${GREP} -v '^/lib/libc\.so\.' || :)"; \ if test "x$$a" = "x" ; then echo 'PASS' ; else \ echo 'FAIL' ; echo '===> e2fsck depends on:' ; echo "$$a" ; exit 1 ; fi |