Author: jkeenan
Date: Sun Jan 4 17:49:53 2009
New Revision: 34952
Modified:
trunk/config/init/defaults.pm
Log:
Restore assignment of empty string to 'cygchkdll' so that that attribute is not seen as undefined by genfile() call in config step gen::makefiles.
Modified: trunk/config/init/defaults.pm
==============================================================================
--- trunk/config/init/defaults.pm (original)
+++ trunk/config/init/defaults.pm Sun Jan 4 17:49:53 2009
@@ -200,6 +200,9 @@
make_set_make => $Config{make_set_make},
make_and => '&&',
+ # for cygwin
+ cygchkdll => '',
+
# make_c: Command to emulate GNU make's C<-C directory> option: chdir
# to C<directory> before executing $(MAKE)
make_c => '$(PERL) -e \'chdir shift @ARGV; system q{$(MAKE)}, @ARGV; exit $$? >> 8;\'',