]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - make/run-cc.pl
Add <oper:autologin> to allow SSL fingerprint-based automatic oper login
[user/henk/code/inspircd.git] / make / run-cc.pl
index d637ba8c95673ed50e2a65417f30a642bb7b0a62..4c3ccbb415e25ecd4446b0318031eec8d40964ea 100755 (executable)
@@ -1,4 +1,16 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
+
+#       +------------------------------------+
+#       | Inspire Internet Relay Chat Daemon |
+#       +------------------------------------+
+#
+#  InspIRCd: (C) 2002-2010 InspIRCd Development Team
+# See: http://wiki.inspircd.org/Credits
+#
+# This program is free but copyrighted software; see
+#      the file COPYING for details.
+#
+# ---------------------------------------------------
 
 ### THIS IS DESIGNED TO BE RUN BY MAKE! DO NOT RUN FROM THE SHELL (because it MIGHT sigterm the shell)! ###
 
@@ -113,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.