projects
/
platform
/
upstream
/
libgsignon-glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa29713
)
Add NOCONFIGURE logic to autogen.sh
author
David King
<david.king@canonical.com>
Wed, 23 Jan 2013 09:35:17 +0000
(09:35 +0000)
committer
David King
<amigadave@amigadave.com>
Wed, 23 Jan 2013 15:24:54 +0000
(15:24 +0000)
Additionally, fix the script to run gtkdocize from $srcdir.
autogen.sh
patch
|
blob
|
history
diff --git
a/autogen.sh
b/autogen.sh
index 0599598dd03064f21f02cfb72ac28158834a05dd..ffe17e291140dfe736f2e084e4f7bc97789bebba 100755
(executable)
--- a/
autogen.sh
+++ b/
autogen.sh
@@
-9,6
+9,8
@@
test -z "$srcdir" && srcdir=.
exit 1
}
+cd "$srcdir"
gtkdocize --copy --flavour no-tmpl
-autoreconf --install --force
-. $srcdir/configure "$@"
+cd "$OLDPWD"
+autoreconf --install --force --verbose --warnings=all "$srcdir"
+test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"