summaryrefslogtreecommitdiff
path: root/make/calcdep.pl
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2015-02-07 17:33:18 +0000
committerPeter Powell <petpow@saberuk.com>2015-05-13 15:22:43 +0100
commit45c048241d3766ed1b6f1637d04b33d26d60ffed (patch)
treeafd9e231fe8b40791a0e130678b270a8aab3d79b /make/calcdep.pl
parent06bc8df45045a3d1fdc45f793abf7ba72b7403b1 (diff)
calcdep: Remove a workaround for a very old version of BSD Make.
Diffstat (limited to 'make/calcdep.pl')
-rwxr-xr-xmake/calcdep.pl3
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: $!";