From 0a3b54f599e20fcccaacc655535c0682803fe348 Mon Sep 17 00:00:00 2001 From: ShutterQuick Date: Thu, 27 Feb 2014 09:45:16 -0800 Subject: Fix build problem on Solaris -rpath only takes one dash Fixes the Solaris build \o/ ''' SaberUK: http://m.theo.nu/jenkins/job/InspIRCd-2.0/435/label=solaris/console <-- do you have any clue on why? <@Shutter> Hmm. Where did that extra - come from. Shutter: no idea :) [...] Shutter: sub make_rpath($;$) <-- in make/utilities.pm thats where that extra - is''' --- make/utilities.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'make/utilities.pm') diff --git a/make/utilities.pm b/make/utilities.pm index 9281246fb..4452acc41 100644 --- a/make/utilities.pm +++ b/make/utilities.pm @@ -86,7 +86,7 @@ sub make_rpath($;$) print "Adding extra library path to \e[1;32m$module\e[0m ... \e[1;32m$libpath\e[0m\n"; $already_added{$libpath} = 1; } - $output .= "-Wl,--rpath -Wl,$libpath -L$libpath " unless defined $main::opt_disablerpath; + $output .= "-Wl,-rpath -Wl,$libpath -L$libpath " unless defined $main::opt_disablerpath; $data =~ s/-L(\S+)//; } return $output; @@ -432,7 +432,6 @@ sub translate_functions($$) while ($line =~ /rpath\("(.+?)"\)/) { my $replace = make_rpath($1,$module); - $replace = "" if ($^O =~ /darwin/i); $line =~ s/rpath\("(.+?)"\)/$replace/; } }; -- cgit v1.2.3