Skip to content
Snippets Groups Projects
Commit 8f2bf4e6 authored by Tristan Van Berkom's avatar Tristan Van Berkom
Browse files

autotools plugin: Dont regenerate existing configure scripts

This closes #256
parent de194dad
No related branches found
No related tags found
1 merge request!492autotools plugin: Dont regenerate existing configure scripts
Pipeline #23524194 passed
......@@ -4,10 +4,12 @@ variables:
autogen: |
export NOCONFIGURE=1;
if [ -e autogen ]; then ./autogen;
elif [ -e autogen.sh ]; then ./autogen.sh;
elif [ -e bootstrap ]; then ./bootstrap;
elif [ -e bootstrap.sh ]; then ./bootstrap.sh;
if [ -x %{conf-cmd} ]; then true;
elif [ -x autogen ]; then ./autogen;
elif [ -x autogen.sh ]; then ./autogen.sh;
elif [ -x bootstrap ]; then ./bootstrap;
elif [ -x bootstrap.sh ]; then ./bootstrap.sh;
else autoreconf -ivf;
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment