diff options
author | Adam <Adam@anope.org> | 2014-01-26 01:17:54 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-01-26 01:17:58 -0500 |
commit | cd184596a2d494c6ed275b7498e5db83af2ba6e3 (patch) | |
tree | f31fb1ddaacc1a843a130d61b94a07ec7d57d4c7 | |
parent | f28b1142f5d476fc70a0155b800b1cdf35a7d95b (diff) |
Only have extras rerun config if it was successfully run before. Config can create the build directory even if cmake isn't found.
-rwxr-xr-x | extras | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -147,7 +147,7 @@ while (1) chop($input); # remove the trailing \n from the user input if ($input eq "q") { - if (-e "build") { + if (-e "build/CMakeFiles") { if (-e "cmake-bin") { my $cmake_path = `find cmake-bin -name cmake -print0`; system($cmake_path, "build/."); |