aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2007-01-13 12:03:42 +0000
committerSimon Tatham <anakin@pobox.com>2007-01-13 12:03:42 +0000
commit9993f71e4c98eef4d3a7c407a8b0f7cf0d471d92 (patch)
tree0d1dd631ad011d71411d95dd112c5a56abeb7f7b
parentc06e371f55b97576421588d21d809c02c637584b (diff)
downloadpuzzles-9993f71e4c98eef4d3a7c407a8b0f7cf0d471d92.zip
puzzles-9993f71e4c98eef4d3a7c407a8b0f7cf0d471d92.tar.gz
puzzles-9993f71e4c98eef4d3a7c407a8b0f7cf0d471d92.tar.bz2
puzzles-9993f71e4c98eef4d3a7c407a8b0f7cf0d471d92.tar.xz
Remove a couple of rogue make targets for `osx.icns.o' and
`osx-info.plist.o' which had crept into most of the Makefiles. [originally from svn r7099]
-rwxr-xr-xmkfiles.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/mkfiles.pl b/mkfiles.pl
index cefd365..52c9a74 100755
--- a/mkfiles.pl
+++ b/mkfiles.pl
@@ -414,6 +414,8 @@ sub deps {
($x = $otmpl) =~ s/X/$i/;
}
@deps = @{$depends{$ii}};
+ # Skip things which are their own dependency.
+ next if grep { $_ eq $i } @deps;
@deps = map {
$_ = &findfile($_);
s/\//$dirsep/g;