pkgconfig: Return appropriate error code from pkgconfig script
authorPeter Korsgaard <jacmet@sunsite.dk>
Tue, 1 Apr 2008 15:29:03 +0000 (15:29 -0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Tue, 1 Apr 2008 15:29:03 +0000 (15:29 -0000)
Patch by Will Newton.

Currently the wrapper script for pkgconfig clobbers the return status
of pkgconfig. This is a problem for example when someone tries to run
"pkgconfig --exists". This patch should allow the correct return code
to be passed through. Note it uses the "pipefail" option that was
introduced with bash 3.

package/pkgconfig/pkgconfig-filter.sh

index 770e9317b582b1d615db8bed470bd00f630c0fec..f2bd75d8e097fec8f496e5fdbb265b0cdcb2b85b 100755 (executable)
@@ -2,6 +2,8 @@
 # filter the output from pkg-config (renamed as pkg-config.real)
 # and ensures PKG_CONFIG_SYSROOT is prepended to all paths
 
+set -o pipefail
+
 CMD=$0
 
 if [ ! "$PKG_CONFIG_SYSROOT" ]; then
@@ -22,6 +24,5 @@ then
        #echo "OKAY" >&2;
        exit 0;
 else
-       echo "pkg-config failed!" >&2
        exit $?
 fi