diff options
author | midipix <writeonce@midipix.org> | 2018-12-20 10:40:41 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-21 22:48:15 -0500 |
commit | ea38161999230a4eef37c17c18cc87a26cce970b (patch) | |
tree | 0d826ab0eca1b1a691c5dc499d155127bd9f6bdd | |
parent | b5898abe4d31d0d89be71a453e6e1391ba413c34 (diff) | |
download | bcparser-ea38161999230a4eef37c17c18cc87a26cce970b.tar.bz2 bcparser-ea38161999230a4eef37c17c18cc87a26cce970b.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 |