mirror of
https://github.com/clearlinux/micro-config-drive.git
synced 2026-04-28 10:53:47 +00:00
20 lines
333 B
Bash
Executable File
20 lines
333 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig
|
|
|
|
autoreconf --force --install --symlink --warnings=all
|
|
|
|
args="\
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--prefix=/usr \
|
|
--enable-silent-rules"
|
|
|
|
if test -z "${NOCONFIGURE}"; then
|
|
set -x
|
|
./configure CFLAGS='-g -O0' $args "$@"
|
|
make clean
|
|
fi
|