summaryrefslogtreecommitdiff
path: root/infrastructure/makebuildenv.pl
diff options
context:
space:
mode:
authorMartin Ebourne <martin@ebourne.me.uk>2006-02-03 00:44:12 +0000
committerMartin Ebourne <martin@ebourne.me.uk>2006-02-03 00:44:12 +0000
commit20a736e41510ea3deb00e93541490a94d23cdb6c (patch)
treee7a611110c7d304b6ca0125ecdfc405db10d2ef6 /infrastructure/makebuildenv.pl
parenta5eaeaa9ff39a5568d9425ec57fd1af5dfe79c90 (diff)
Beef up configure checks for 64 bit endian swapping function.
NOTE: Needs testing on other platforms, especially BSD.
Diffstat (limited to 'infrastructure/makebuildenv.pl')
-rwxr-xr-xinfrastructure/makebuildenv.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/infrastructure/makebuildenv.pl b/infrastructure/makebuildenv.pl
index 2cecc00d..7ce2e138 100755
--- a/infrastructure/makebuildenv.pl
+++ b/infrastructure/makebuildenv.pl
@@ -350,8 +350,8 @@ for my $mod (@modules, $implicit_dep)
{
opendir DIR,$mod;
for my $h (grep /\.h\Z/i, readdir DIR)
- {
- next if /\A\._/; # Temp Mac OS Resource hack
+ {
+ next if $h =~ /\A\./; # Ignore Mac resource forks, autosaves, etc
open FL,"$mod/$h" or die "can't open $mod/$h";
my $f;