diff options
Diffstat (limited to 'Master/tlpkg/tlperl.old/lib/B/cc_harness')
-rw-r--r-- | Master/tlpkg/tlperl.old/lib/B/cc_harness | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Master/tlpkg/tlperl.old/lib/B/cc_harness b/Master/tlpkg/tlperl.old/lib/B/cc_harness deleted file mode 100644 index 79f8727a8f0..00000000000 --- a/Master/tlpkg/tlperl.old/lib/B/cc_harness +++ /dev/null @@ -1,12 +0,0 @@ -use Config; - -$libdir = $ENV{PERL_SRC} || "$Config{installarchlib}/CORE"; - -if (!grep(/^-[cS]$/, @ARGV)) { - $linkargs = sprintf("%s $libdir/$Config{libperl} %s", - @Config{qw(ldflags libs)}); -} - -$cccmd = "$Config{cc} $Config{ccflags} -I$libdir @ARGV $linkargs"; -print "$cccmd\n"; -exec $cccmd; |