summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2012-12-23 18:40:53 +0000
committerattilamolnar <attilamolnar@hush.com>2012-12-25 18:39:04 +0100
commita0eeadff239a26fc6e3be84b50090ce5f52d9c57 (patch)
tree6388dea7811f9ddb7d0f88f4c5ec8168c2f2f07a /make
parent020eeeabd8ee2067d57e3d37cfc65d6d613ba83f (diff)
Replace a GNUmake idiom with the portable equivalent.
Diffstat (limited to 'make')
-rwxr-xr-xmake/calcdep.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/make/calcdep.pl b/make/calcdep.pl
index 873b228ca..4a759a24a 100755
--- a/make/calcdep.pl
+++ b/make/calcdep.pl
@@ -225,7 +225,7 @@ sub dep_cpp($$$) {
gendep $file;
print MAKE "$out: $file $f2dep{$file}\n";
- print MAKE "\t@\$(SOURCEPATH)/make/unit-cc.pl $type\$(VERBOSE) \$\@ \$< \$>\n";
+ print MAKE "\t@\$(SOURCEPATH)/make/unit-cc.pl $type\$(VERBOSE) \$\@ \$(SOURCEPATH)/src/$file \$>\n";
}
sub dep_so($) {
@@ -236,7 +236,7 @@ sub dep_so($) {
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) \$\@ \$< \$>\n";
+ print MAKE "\t@\$(SOURCEPATH)/make/unit-cc.pl link-so\$(VERBOSE) \$\@ \$(SOURCEPATH)/src/$file \$>\n";
} else {
dep_cpp $file, $out, 'gen-so';
}