diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2011-12-23 13:38:46 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2011-12-23 13:38:46 +0100 |
commit | f71a55810f09fc010b44689aa00823a745ff83c6 (patch) | |
tree | 99a91329171c0264cc80db0691be6b618154a985 /Makefile.am | |
parent | 749f464f9169acc5f0aa25c7ce5428353ebbe664 (diff) |
autogen.sh: moce CFLAGS from to configure.ac; print common ./configure options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 3fa7aed30a..47ed3ccc48 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,6 +16,7 @@ AM_CPPFLAGS = \ -DLIBEXECDIR=\""$(libexecdir)"\" AM_CFLAGS = \ + ${my_CFLAGS} \ -fvisibility=hidden \ -ffunction-sections \ -fdata-sections @@ -207,11 +208,13 @@ udev_common_sources = \ udev/udev-builtin-kmod.c udev_common_CFLAGS = \ - $(BLKID_CFLAGS) + $(BLKID_CFLAGS) \ + $(KMOD_CFLAGS) udev_common_LDADD = \ libudev/libudev-private.la \ - $(BLKID_LIBS) + $(BLKID_LIBS) \ + $(BLKID_KMOD) udev_udevd_SOURCES = \ $(udev_common_sources) \ |