Re: Bug#72071: make/the default rules do not escape filenames correctly

2000-09-27 Thread Manoj Srivastava
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

target/dependants with equal mtime

2000-09-27 Thread Mark Allen
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

Re: Bug in make: ignoring included prerequisites

2000-09-27 Thread Paul D. Smith
%% 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

Bug with repeated instances of per-target variable assignment

2000-09-27 Thread David Zuhn
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:

Bug in make: ignoring included prerequisites

2000-09-27 Thread Jochen Hepp
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