The enclosed patch adds support for nanosecond timestamps on *BSD
systems.
Since *BSD uses st_mtimespec and Solaris uses st_mtim, this required
AC_STRUCT_ST_MTIM_NSEC to pass the toplevel field name instead of just
tv_nsec (or equiv).
--jtc
2000-10-10 J.T. Conklin <[EMAIL PROTECTED
peter ~$ cat Makefile
override FOO := foo
FOO += bar
default:
@echo $(FOO)
peter ~$ make
foo
*** but ***
peter ~$ cat Makefile
FOO := foo
override FOO += bar
default:
@echo $(FOO)
peter ~$ make
foo bar
(both 3.76.1 and 3.79.1)
I'd argue the first is wrong, but at least
I believe this has already been fixed in later versions ob GNU make.
Please try the latest (3.79.1) and see if you continue to see the problem.
--
---
Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips