summaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2016-04-16 13:05:44 +0100
committerPeter Powell <petpow@saberuk.com>2016-04-16 13:05:44 +0100
commit2af363755a87ec045f61948a80f29d0367f98d92 (patch)
tree9e5d132e82d9c03c24e46f0b2f7e2ee7f3aaa9fc /extras
parentd2ea1e7917c045856f70cb8d82861e913a08a9f7 (diff)
Remove references to cmake-bin which was removed ages ago.
Diffstat (limited to 'extras')
-rwxr-xr-xextras7
1 files changed, 1 insertions, 6 deletions
diff --git a/extras b/extras
index 6344ae20f..c1b1fba67 100755
--- a/extras
+++ b/extras
@@ -148,12 +148,7 @@ while (1)
if ($input eq "q") {
if (-e "build/CMakeFiles") {
- if (-e "cmake-bin") {
- my $cmake_path = `find cmake-bin -name cmake -print0`;
- system($cmake_path, "build/.");
- } else {
- system("cmake", "build/.");
- }
+ system("cmake", "build/.");
print "\nNow cd build, then run make to build Anope.\n\n";
} else {
print "\nBuild directory not found. You should run ./Config now.\n\n"