diff options
| author | 2006-09-05 23:34:15 +0000 | |
|---|---|---|
| committer | 2006-09-05 23:34:15 +0000 | |
| commit | cf0f30eea382eb7fde4dbfc08402c5b5c643cdbb (patch) | |
| tree | 7bb92cb46acd836dc5f0df729b960d13f4cb79cc | |
| parent | New CAPAB variable (manditory): PROTOCOL (diff) | |
We were printing a command instead of exec'ing it :p
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5146 e03df62e-2008-0410-955e-edbf42e46eb7
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -852,7 +852,7 @@ sub dir_check { if (($tmp eq "") || ($tmp =~ /^y/i)) { # Attempt to Create the Dir.. - print("mkdir -p \"$var\" >> /dev/null 2>&1"); + system("mkdir -p \"$var\" >> /dev/null 2>&1"); $chk = system("mkdir -p \"$var\" >> /dev/null 2>&1") / 256; if ($chk != 0) { print "Unable to create directory. ($var)\n\n"; |
