4d79d1 build system: pkgconf.sh: remove accidental leading spaces.

Authored and Committed by midipix 6 years ago
    build system: pkgconf.sh: remove accidental leading spaces.
    
        
file modified
+1 -1
sofort/pkgconf.sh CHANGED
@@ -55,7 +55,7 @@ fi
55
55
56
56
# cflags
57
57
if [ -n "$pkgconf_cflags" ] || [ -n "${PKGCONF_DEFS}" ]; then
58
- pkgconf_cflags=" $pkgconf_cflags ${PKGCONF_DEFS}"
58
+ pkgconf_cflags="$pkgconf_cflags ${PKGCONF_DEFS}"
59
59
pkgconf_cflags=$(printf '%s' "$pkgconf_cflags" | sed -e 's/^[ \t]*//g')
60
60
fi
61
61