Hi,
[Please retain the CC to [EMAIL PROTECTED] so
that the Debian Bug Tracking system can record your input]
The following report was submitted by a Debian user. It has
been independently verified.
manoj
If a filename contains a space or a dollar, make/its de
The version of make I'm using is make-3.79.1.
Here's an outline of my mail:
o Artificial example makefile and command
o My expectations
o Observed behavior
o More realistic situation
o My modifications to "make" to get the behavior
I expected
==
Artificial exa
%% Jochen Hepp <[EMAIL PROTECTED]> writes:
jh> I found bug in make-3.79.1 (it accurs also in 3.78.1).
This is a bug in your makefile.
jh> If a Makefile includes another file (Makefile.included) and if the
jh> included file defines prerequisites for a target (or both define
jh> prerequis
This is GNU make 3.79.1, running on Solaris 2.6.
Using this Makefile (tabs may be lost in the mail)
CC = gcc
INCS = -Iblorch
foo.o: INCS += -Ifoo
foo.o: INCS += -Ibar
foo.o: INCS += -Ibaz
foo: foo.o
$(CC) $(LIBS) $^ -o $@
foo.o: foo.c
$(CC) $(INCS) -c $< -o $@
foo.c:
Hi
I found bug in make-3.79.1 (it accurs also in 3.78.1).
If a Makefile includes another file (Makefile.included) and if
the included file defines prerequisites for a target (or both
define prerequisites), then the prerequisites defined in the
included files a silently ignored.
I wrote a little