diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-20 15:24:04 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-20 15:24:04 +0000 |
commit | 345ef802952ccb181d9df76533201ac7f840b267 (patch) | |
tree | e621d2242ed42de8e49996122a4ddbfa8d1856d6 /.inspircd.inc | |
parent | ed166e064d10ad3d29ae48aeaf7978a2a728c4d0 (diff) |
*** empty log message ***
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1463 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to '.inspircd.inc')
-rw-r--r-- | .inspircd.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.inspircd.inc b/.inspircd.inc index 24e280019..b7696026a 100644 --- a/.inspircd.inc +++ b/.inspircd.inc @@ -18,6 +18,7 @@ my $conffile = "@CONFIG_DIR@/inspircd.conf"; my $binpath = "@BINARY_DIR@"; my $libpath = "@LIBRARY_DIR@"; +my $executable = "@EXECUTABLE@"; $ENV{"LD_LIBRARY_PATH"} = $ENV{"LD_LIBRARY_PATH"} . ":/usr/local/lib/mysql:/usr/lib/mysql:$libpath"; @@ -83,7 +84,7 @@ sub start { # Check to see its not 'running' already. if (getstatus() == 1) { print "InspIRCd is already running.\n"; return 0; } # If we are still alive here.. Try starting the IRCd.. - system("$binpath/inspircd"); + system("$binpath/$executable"); sleep 1; if (getstatus() == 0) { print "InspIRCd Seemingly not started, Log follows:\n"; @@ -98,7 +99,7 @@ sub debug { # Check to see its not 'running' already. if (getstatus() == 1) { print "InspIRCd is already running.\n"; return 0; } # If we are still alive here.. Try starting the IRCd.. - system("gdb --args $binpath/inspircd -nofork -debug"); + system("gdb --args $binpath/$executable -nofork -debug"); } |