mirror of
https://github.com/json-c/json-c.git
synced 2026-03-23 23:19:06 +08:00
First, we should be able to execute as "./autogen.sh". Second, add support for NOCONFIGURE=1. For more information, see http://people.gnome.org/~walters/docs/build-api.txt
6 lines
106 B
Bash
Executable File
6 lines
106 B
Bash
Executable File
#!/bin/sh
|
|
autoreconf -v --install || exit 1
|
|
if test -z "$NOCONFIGURE"; then
|
|
exec ./configure "$@"
|
|
fi
|