summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authoraquanight <aquanight@e03df62e-2008-0410-955e-edbf42e46eb7>2008-03-23 20:46:10 +0000
committeraquanight <aquanight@e03df62e-2008-0410-955e-edbf42e46eb7>2008-03-23 20:46:10 +0000
commitd6100a52216fd8a06643d4d5003ab016221e8ba6 (patch)
treec6a16cf8981133eb748f430eebf750013fc7a848 /configure
parent743c10e4ca5acd45e670b335a07b5bf3ab754ab6 (diff)
Fix configure -svnupdate not bailing if conflicts occur.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9177 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index 21e283ef8..781b098a6 100755
--- a/configure
+++ b/configure
@@ -560,6 +560,8 @@ sub svnupdate
{
print STDERR "\e[0;33;1mERROR:\e[0m You have local modifications which conflicted with the updates from SVN\n";
printf STDERR "Configure is not able to complete the update. Please resolve these conflicts, then run ./configure -%supdate", (($coredirchanged || $configurechanged) ? "" : "mod");
+ print "Conflicted files: " . join ", ", @conflicted;
+ exit 1;
}
if ($configurechanged || $coredirchanged)
{