2
0
mirror of https://codeberg.org/kiss-community/repo synced 2025-01-10 12:50:20 -07:00
repo/extra/gcompat/build

13 lines
309 B
Plaintext
Raw Normal View History

2020-07-17 05:07:29 -06:00
#!/bin/sh -e
2021-07-03 14:42:26 -06:00
sed 's|/lib|/usr/lib|g' Makefile > _
mv -f _ Makefile
2020-07-17 05:07:29 -06:00
2021-07-05 17:31:32 -06:00
# pkgconf is only used to check for obstack support
# which we don't have. The build works fine without
# this line, this just hides the errors.
#
# Also see: https://github.com/pullmoll/musl-obstack/
2021-07-27 09:02:41 -06:00
make PKG_CONFIG=/bin/true
2021-07-17 20:14:26 -06:00
make install