%% "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
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
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 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