summaryrefslogtreecommitdiff
path: root/lib/make/configure.pl
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-25 14:01:00 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-25 14:01:00 +0000
commit8ffe7169ac26eab3a5c957efca559aae86e88f83 (patch)
tree134537a5bd9b93b042ead1aaf15f5d6ae023cf5f /lib/make/configure.pl
parent8c84992e4a8e819d1cfe2a4afb9c22e1c5795646 (diff)
Another change for NT. Now tries to open a .obj file if it fails to open
a .o file. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@579 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/configure.pl')
-rwxr-xr-xlib/make/configure.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/make/configure.pl b/lib/make/configure.pl
index e789a774..3f54c469 100755
--- a/lib/make/configure.pl
+++ b/lib/make/configure.pl
@@ -63,7 +63,7 @@ EOT
# Search the object file for the appropriate symbols
- open(IN, "<fname_test.o") || die "Cannot open fname_test.o\n";
+ open(IN, "<fname_test.o") || open(IN, "<fname_test.obj") || die "Cannot open fname_test.o\n";
while(<IN>)
{
@@ -187,7 +187,7 @@ EOT
# Search the object file for the appropriate symbols
- open(IN, "<fname_test.o") || die "Cannot open fname_test.o\n";
+ open(IN, "<fname_test.o") || open(IN, "<fname_test.obj") || die "Cannot open fname_test.o\n";
while(<IN>)
{