Re: Make 3.79 can no longer quoted strings into a file using the shell

2003-06-17 Thread Paul D. Smith
%% "Pomerleau, Francois" <[EMAIL PROTECTED]> writes: pf> Hello, I am developing applications in Ada and I use make for my pf> compilation. As part of my build process, I generate an Ada file pf> (version.adb) that contains the build date and the release pf> version. I was able to do so us

Make 3.79 can no longer quoted strings into a file using the shell

2003-06-17 Thread Pomerleau, Francois
Hello, I am developing applications in Ada and I use make for my compilation. As part of my build process, I generate an Ada file (version.adb) that contains the build date and the release version. I was able to do so using previous version of make (3.77) that came with the compiler (GNAT). Recentl

Re: make 3.80 bug and testcase

2003-06-17 Thread Paul D. Smith
This is a known bug that has been fixed in the source for a while. A patch is available attached to the bug report in Savannah (http://savannah.gnu.org/projects/make) -- --- Paul D. Smith <[EMAIL PROTECTED]> Fi

make 3.80 bug and testcase

2003-06-17 Thread Samium Gromoff
make 3.80 is subject to a problem which is demonstrated by the following shell snippet: 8< for a in `seq 1 5`; do touch 0123456789012345678901234567890123$a.c; done cat > Makefile <<'DELIM' define BUG SRC := $$(wildcard *.c) #OBJ := $$(SRC:.c=.o) OBJ := $$(pa