diff options
author | Cem Keylan <cem@ckyln.com> | 2022-05-30 17:12:19 +0200 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2022-05-30 17:12:19 +0200 |
commit | 660bcddeac9afd536f52cdc8cfbfc2b734fa363f (patch) | |
tree | d7ed8703b5a2a60ade3703e8fc2699369e4e0669 /extra/libbsd/build | |
parent | e96f18616d4a486ae618d68610fbc55008b56811 (diff) | |
download | repository-660bcddeac9afd536f52cdc8cfbfc2b734fa363f.tar.gz |
libbsd: split libmd
Diffstat (limited to 'extra/libbsd/build')
-rwxr-xr-x | extra/libbsd/build | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/extra/libbsd/build b/extra/libbsd/build index 211f953b..e7de392a 100755 --- a/extra/libbsd/build +++ b/extra/libbsd/build @@ -1,27 +1,9 @@ #!/bin/sh -e -tmp_dir=$PWD/tmp - -( -cd libmd - -./configure \ - --prefix=/ \ - --disable-shared - -make -make DESTDIR="$tmp_dir" install -) - -( -cd libbsd - -export CFLAGS="$CFLAGS -I$tmp_dir/include" -export LIBS="$tmp_dir/lib/libmd.a" +export CPPFLAGS="$CPPFLAGS $(pkgconf --cflags libmd)" ./configure \ --prefix=/usr make make DESTDIR="$1" install -) |