diff options
author | midipix <writeonce@midipix.org> | 2018-12-20 10:40:41 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-21 22:48:23 -0500 |
commit | 88c01afd370b5e84fcf433644f65f94831aab9be (patch) | |
tree | 889c95a069c32def2ffc84983e43204f77ad85be /sofort | |
parent | 7db4bf6bb732ae0b47a2ad767e696864c032092b (diff) | |
download | ntcon-88c01afd370b5e84fcf433644f65f94831aab9be.tar.bz2 ntcon-88c01afd370b5e84fcf433644f65f94831aab9be.tar.xz |
build system: pkgconf.sh: remove accidental leading spaces.
Diffstat (limited to 'sofort')
-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 |