diff options
author | Peter Powell <petpow@saberuk.com> | 2014-02-26 20:19:58 +0000 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-04-11 15:38:17 +0200 |
commit | 2803ae5d75e610fb821b7fdb3771777d62ac9fd3 (patch) | |
tree | 955a1f5b6547a4e9366c113e118d0b5d980e3cb4 /make/calcdep.pl | |
parent | 557c02839bec991dd846a6dc12ce7ba52de1525c (diff) |
Remove various broken/useless features from the build system.
- Removed support for changing the build directory using configure.
This can still be set using make BUILDPATH=foo.
- Removed support for SPLIT_CC builds. This is not documented
anywhere and is quite useless as it doesn't work.
- Remove STARTSCRIPT from configure; always install the perl
helper.
Diffstat (limited to 'make/calcdep.pl')
-rwxr-xr-x | make/calcdep.pl | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/make/calcdep.pl b/make/calcdep.pl index b0c6941b7..376d19573 100755 --- a/make/calcdep.pl +++ b/make/calcdep.pl @@ -239,15 +239,8 @@ sub dep_cpp($$$) { sub dep_so($) { my($file) = @_; my $out = find_output $file; - my $split = find_output $file, 1; - if ($ENV{SPLIT_CC}) { - dep_cpp $file, $split, 'gen-o'; - print MAKE "$out: $split\n"; - print MAKE "\t@\$(SOURCEPATH)/make/unit-cc.pl link-so\$(VERBOSE) \$\@ \$(SOURCEPATH)/src/$file \$>\n"; - } else { - dep_cpp $file, $out, 'gen-so'; - } + dep_cpp $file, $out, 'gen-so'; return $out; } |