diff options
author | Neal H. Walfield <neal@gnu.org> | 2008-12-04 15:43:40 +0100 |
---|---|---|
committer | Neal H. Walfield <neal@gnu.org> | 2008-12-04 15:43:40 +0100 |
commit | e2580c84a7651263ca36259103d4b4e4be47b6d4 (patch) | |
tree | 00e294aafb28fac2b8848a0ef8b1b04dc9810553 | |
parent | cadfdbcc0128ca382f619d52a837167c6dc20782 (diff) |
Use correct CPPFLAGS and CFLAGS when building libhurd-slab.
2008-12-04 Neal H. Walfield <neal@gnu.org>
* Makefile.am (AM_CPPFLAGS): Set to $(USER_CPPFLAGS).
(AM_CFLAGS): Set to $(USER_CFLAGS).
-rw-r--r-- | libhurd-slab/ChangeLog | 5 | ||||
-rw-r--r-- | libhurd-slab/Makefile.am | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/libhurd-slab/ChangeLog b/libhurd-slab/ChangeLog index b7e4c9a..18ac0d0 100644 --- a/libhurd-slab/ChangeLog +++ b/libhurd-slab/ChangeLog @@ -1,3 +1,8 @@ +2008-12-04 Neal H. Walfield <neal@gnu.org> + + * Makefile.am (AM_CPPFLAGS): Set to $(USER_CPPFLAGS). + (AM_CFLAGS): Set to $(USER_CFLAGS). + 2008-11-03 Neal H. Walfield <neal@gnu.org> * headers.m4: Don't create an empty libhurd-slab/libhurd-slab.a. diff --git a/libhurd-slab/Makefile.am b/libhurd-slab/Makefile.am index 3450879..3ec8438 100644 --- a/libhurd-slab/Makefile.am +++ b/libhurd-slab/Makefile.am @@ -26,8 +26,6 @@ endif includehurddir = $(includedir)/hurd includehurd_HEADERS = slab.h -# FIXME: Build a special libhurd-ihash.a using libc-parts for the rootservers, -# and a normal for everybody else. -AM_CPPFLAGS = -I$(LIBC)/include -I$(top_builddir)/include \ - -I$(top_srcdir)/libc-parts +AM_CPPFLAGS = $(USER_CPPFLAGS) +AM_CFLAGS = $(USER_CFLAGS) libhurd_slab_a_SOURCES = slab.h slab.c |