mirror of
https://github.com/clearlinux/usrbinjava.git
synced 2026-04-28 11:13:38 +00:00
15 lines
223 B
Bash
Executable File
15 lines
223 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
autoreconf --force --install --symlink --warnings=all
|
|
|
|
args="\
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--prefix=/usr \
|
|
--enable-silent-rules"
|
|
|
|
./configure CFLAGS="-g -O1 $CFLAGS" $args "$@"
|
|
make clean
|