]> git.saurik.com Git - apt.git/commitdiff
test: Fix building of noopchroot
authorJulian Andres Klode <jak@debian.org>
Tue, 23 Aug 2016 21:37:36 +0000 (23:37 +0200)
committerJulian Andres Klode <jak@debian.org>
Fri, 26 Aug 2016 20:17:55 +0000 (22:17 +0200)
Gbp-Dch: ignore

test/integration/framework

index 39c9fcde2e3fdfcf5a7c1d1eeead9b52da9fd556..bf9cef4e844202686182cc2e4a50752eb09b2d65 100644 (file)
@@ -589,7 +589,11 @@ int execvp(const char *file, char *const argv[]) {
        return func_execvp(newfile, argv);
 }
 EOF
        return func_execvp(newfile, argv);
 }
 EOF
-       testempty --nomsg gcc -Wall -Wextra -fPIC -shared -o noopchroot.so noopchroot.c -ldl
+       if cc -ldl 2>&1 | grep -q dl; then
+               testempty --nomsg cc -Wall -Wextra -fPIC -shared -o noopchroot.so noopchroot.c
+       else
+               testempty --nomsg cc -Wall -Wextra -fPIC -shared -o noopchroot.so noopchroot.c -ldl
+       fi
 }
 configcompression() {
        if [ "$1" = 'ALL' ]; then
 }
 configcompression() {
        if [ "$1" = 'ALL' ]; then