mirror of
https://github.com/clearlinux/telemetrics-client.git
synced 2026-06-15 18:25:57 +00:00
12 lines
264 B
Bash
Executable File
12 lines
264 B
Bash
Executable File
#!/bin/sh
|
|
|
|
autoreconf --force --install --warnings=all
|
|
|
|
if [ "$1" = "debug" ]; then
|
|
echo "Creating config.site for local overrides"
|
|
cat > config.site <<- EOF
|
|
CFLAGS="-ggdb3 -Og" CPPFLAGS="-DDEBUG"
|
|
EOF
|
|
echo "Now run CONFIG_SITE=config.site ./configure ..."
|
|
fi
|