]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - make/run-cc.pl
Re-enable removal of a tmp file that was left out for debug.
[user/henk/code/inspircd.git] / make / run-cc.pl
index 4c5bb18cb39060212fae9e8d91225364eecc2b9c..07f6ace9890888c956021eb60e7328780b7ed42b 100755 (executable)
@@ -5,7 +5,7 @@
 #       +------------------------------------+
 #
 #  InspIRCd: (C) 2002-2009 InspIRCd Development Team
-# See: http://www.inspircd.org/wiki/index.php/Credits
+# See: http://wiki.inspircd.org/Credits
 #
 # This program is free but copyrighted software; see
 #      the file COPYING for details.
@@ -125,14 +125,18 @@ if ($cc eq "ar") {
        {
                if ($n =~ /\.cpp$/)
                {
+                       my $f = $n;
+                       if (defined $ENV{SOURCEPATH}) {
+                               $f =~ s#^$ENV{SOURCEPATH}/src/##;
+                       }
                        if ($action eq "BUILD")
                        {
-                               $name .= " " . $n;
+                               $name .= " " . $f;
                        }
                        else
                        {
                                $action = "BUILD";
-                               $name = $n;
+                               $name = $f;
                        }
                }
                elsif ($action eq "BUILD") # .cpp has priority.