projects
/
platform
/
core
/
uifw
/
at-spi2-atk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Remove X related lines
[platform/core/uifw/at-spi2-atk.git]
/
autogen.sh
1
#!/bin/sh
2
3
test -n "$srcdir" || srcdir=`dirname "$0"`
4
test -n "$srcdir" || srcdir=.
5
6
olddir=`pwd`
7
cd "$srcdir"
8
9
# gnome-autogen.sh runs configure, so do likewise.
10
autoreconf -vif
11
12
cd "$olddir"
13
14
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
15