]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Change to use the core perl module Cwd rather than the pwd command. Should be more...
authorom <om@e03df62e-2008-0410-955e-edbf42e46eb7>
Thu, 10 Aug 2006 13:46:11 +0000 (13:46 +0000)
committerom <om@e03df62e-2008-0410-955e-edbf42e46eb7>
Thu, 10 Aug 2006 13:46:11 +0000 (13:46 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4831 e03df62e-2008-0410-955e-edbf42e46eb7

configure

index ceac058476349881f291d5eb3ca62a17168e4f50..f5f4d38c59ac8770ccf059a7fe9dd02472be3274 100755 (executable)
--- a/configure
+++ b/configure
@@ -12,7 +12,9 @@
 #
 ########################################
 
-chomp($topdir = `pwd`);
+use Cwd;
+
+chomp($topdir = getcwd());
 $this = resolve_directory($topdir);                                            # PWD, Regardless.
 @modlist = ();                                                                 # Declare for Module List..
 %config = ();                                                                  # Initiate Configuration Hash..