Kaydet (Commit) 14104030 authored tarafından Enrico Tröger's avatar Enrico Tröger

Allow skipping configure during autogen by setting NOCONFIGURE=1 (thanks to Chow Loong Jin).

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5375 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 227eefdc
......@@ -7,6 +7,9 @@
Fix installation of template files.
* src/ui_utils.c:
Use non-GIO mime-type icon lookup if GIO lookup fails.
* autogen.sh:
Allow skipping configure during autogen by setting NOCONFIGURE=1
(thanks to Chow Loong Jin).
2010-11-07 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
......
......@@ -91,6 +91,10 @@ autoheader
automake --add-missing --copy --gnu
autoconf
if [ "$NOCONFIGURE" = 1 ]; then
echo "Done. configure skipped."
exit 0;
fi
echo "Running $srcdir/configure $@ ..."
$srcdir/configure "$@" && echo "Now type 'make' to compile." || exit 1
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment