diff options
author | midipix <writeonce@midipix.org> | 2018-12-20 10:40:41 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-20 10:40:41 -0500 |
commit | d8b018933d6d7bed3e0a772bf3c6d8f223df2483 (patch) | |
tree | 90b3b55242273f68d6b6bc195e0279f9d492b227 | |
parent | f41ab17352e41799d9f844680e1a9ab577efc072 (diff) | |
download | sbpython3-d8b018933d6d7bed3e0a772bf3c6d8f223df2483.tar.bz2 sbpython3-d8b018933d6d7bed3e0a772bf3c6d8f223df2483.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 |