[svn:parrot] r45809 - trunk/config/init
coke at svn.parrot.org
coke at svn.parrot.org
Mon Apr 19 16:26:25 UTC 2010
Author: coke
Date: Mon Apr 19 16:26:24 2010
New Revision: 45809
URL: https://trac.parrot.org/parrot/changeset/45809
Log:
Don't try to use ccwarn in this case, since it doesn't necessarily exist.
doughera++ (TT #1562)
Modified:
trunk/config/init/defaults.pm
Modified: trunk/config/init/defaults.pm
==============================================================================
--- trunk/config/init/defaults.pm Mon Apr 19 15:29:27 2010 (r45808)
+++ trunk/config/init/defaults.pm Mon Apr 19 16:26:24 2010 (r45809)
@@ -94,9 +94,9 @@
# Compiler -- used to turn .c files into object files.
# (Usually cc or cl, or something like that.)
cc => $cc_option ? $cc_option : $Config{cc},
- # If we specify a compiler, we can't use existing ccflags and ccwarn.
+ # If we specify a compiler, we can't use existing ccflags.
ccflags => $cc_option ? '' : $Config{ccflags},
- ccwarn => $cc_option ? '' : $Config{ccwarn},
+ ccwarn => '',
# Flags used to indicate this object file is to be compiled
# with position-independent code suitable for dynamic loading.
More information about the parrot-commits
mailing list