-
Bug
-
Resolution: Fixed
-
P2
-
1.4.0
-
None
-
beta
-
generic
-
generic
Name: dm26566 Date: 03/21/2001
The Make Automatic Variable $? expands out to all depencies on the
list, thus the popular, but incorrect make rule command
$(CP) $? $@
will fail if another depency is added. To ensure that this rule
always works, it should be changed to
$(CP) $< $@
The following files use this bad format:
./sun/awt/Makefile
./sun/cmm/Makefile
./javax/swing/plaf/Makefile
./javax/swing/Makefile
./common/Program.gmk
./common/Library.gmk
======================================================================