diff options
author | Sung-Jin Park <sj76.park@samsung.com> | 2017-10-20 17:25:08 +0900 |
---|---|---|
committer | Sung-Jin Park <sj76.park@samsung.com> | 2017-10-20 17:25:08 +0900 |
commit | 5952aa03d28073982337c14958dba881599ed971 (patch) | |
tree | 8e567cf465f062c23e825a51b68fd810bf74f88b /autogen.sh | |
parent | f0a24579e8f609a282571ab966f1461e7d1d840f (diff) | |
download | libxkbcommon-sandbox/sj76park/efl120.tar.gz libxkbcommon-sandbox/sj76park/efl120.tar.bz2 libxkbcommon-sandbox/sj76park/efl120.zip |
packaging: modify some files to bump to 0.7.2sandbox/sj76park/efl120
Change-Id: I19d76d9b0e6ee79c1f0a07a7099131aca69d53dc
Signed-off-by: Sung-Jin Park <sj76.park@samsung.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..c7467f1 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,14 @@ +#!/bin/sh -e + +srcdir=`dirname "$0"` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd "$srcdir" + +autoreconf --verbose --install --force --warnings=all +cd "$ORIGDIR" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir/configure" "$@" +fi |