diff options
author | midipix <writeonce@midipix.org> | 2018-12-20 10:40:41 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-21 22:48:27 -0500 |
commit | 664c543acd8fd2b2e869df8f11e36c77931f3187 (patch) | |
tree | 223009884aa4d0019a06e1af7e07f483066af6d8 | |
parent | 9afe042e6a5a9a421723fe798c07b71f96de94bb (diff) | |
download | perk-664c543acd8fd2b2e869df8f11e36c77931f3187.tar.bz2 perk-664c543acd8fd2b2e869df8f11e36c77931f3187.tar.xz |
build system: pkgconf.sh: remove accidental leading spaces.
-rwxr-xr-x | sofort/pkgconf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sofort/pkgconf.sh b/sofort/pkgconf.sh index 1b65604..a37e368 100755 --- a/sofort/pkgconf.sh +++ b/sofort/pkgconf.sh @@ -55,7 +55,7 @@ fi # cflags if [ -n "$pkgconf_cflags" ] || [ -n "${PKGCONF_DEFS}" ]; then - pkgconf_cflags=" $pkgconf_cflags ${PKGCONF_DEFS}" + pkgconf_cflags="$pkgconf_cflags ${PKGCONF_DEFS}" pkgconf_cflags=$(printf '%s' "$pkgconf_cflags" | sed -e 's/^[ \t]*//g') fi |