diff options
author | Cem Keylan <cem@ckyln.com> | 2022-05-30 17:47:17 +0200 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2022-05-30 17:47:17 +0200 |
commit | 8c9983a11e64afbaeac85fc8d605ebf3dd3b2a5b (patch) | |
tree | 97837c476e58de1004f73ddf14e6713758f7f3f2 | |
parent | f421d3e706d3b8619ffd8447b9174de929ca5750 (diff) | |
download | repository-8c9983a11e64afbaeac85fc8d605ebf3dd3b2a5b.tar.gz |
libbsd: fix shellcheck error
-rwxr-xr-x | extra/libbsd/build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extra/libbsd/build b/extra/libbsd/build index e7de392a..3f2dad2d 100755 --- a/extra/libbsd/build +++ b/extra/libbsd/build @@ -1,6 +1,7 @@ #!/bin/sh -e -export CPPFLAGS="$CPPFLAGS $(pkgconf --cflags libmd)" +CPPFLAGS="$CPPFLAGS $(pkgconf --cflags libmd)" +export CPPFLAGS ./configure \ --prefix=/usr |