diff options
author | Peter Powell <petpow@saberuk.com> | 2015-02-07 17:33:18 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2015-05-13 15:22:43 +0100 |
commit | 45c048241d3766ed1b6f1637d04b33d26d60ffed (patch) | |
tree | afd9e231fe8b40791a0e130678b270a8aab3d79b /make/calcdep.pl | |
parent | 06bc8df45045a3d1fdc45f793abf7ba72b7403b1 (diff) |
calcdep: Remove a workaround for a very old version of BSD Make.
Diffstat (limited to 'make/calcdep.pl')
-rwxr-xr-x | make/calcdep.pl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/make/calcdep.pl b/make/calcdep.pl index 376d19573..626d3a194 100755 --- a/make/calcdep.pl +++ b/make/calcdep.pl @@ -42,9 +42,6 @@ sub run() { unlink 'include'; symlink "$ENV{SOURCEPATH}/include", 'include'; mkdir $_ for qw/bin modules obj/; -# BSD make has a horribly annoying bug resulting in an extra chdir of the make process -# Create symlinks to work around it - symlink "../$_", "obj/$_" for qw/bin coremods modules obj/; $build = getcwd(); open MAKE, '>real.mk' or die "Could not write real.mk: $!"; |