diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2009-11-23 Kaz Kylheku <kkylheku@gmail.com> + * Makefile (conftest.o): revert change that took CFLAGS from + this target. + +2009-11-23 Kaz Kylheku <kkylheku@gmail.com> + * configure: Don't rely on higher precision arithmetic from the build machine's shell. POSIX requires shell arithmetic to be only signed long. We can't compute the INT_PTR_MAX constant in the shell, but @@ -110,7 +110,7 @@ conftest: conftest.c $(CC) $(CFLAGS) -o $@ $^ conftest.o: conftest.c - $(CC) $(CFLAGS) -o $@ $^ + $(CC) -c -o $@ $^ conftest.syms: conftest.o $(NM) -t o -P $^ > $@ |