diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2005-12-01 14:40:49 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2005-12-01 14:40:49 +0000 |
commit | 0cc7d5bd03c0bb9e9693c6fb7c63be2bb3771ea1 (patch) | |
tree | 787ba8c424e8aac0fa9f26c54714d6bda37c0db3 | |
parent | 8ce4419f7fb672f3e23b66f03850038c0de07e2a (diff) |
Make example*/Makefile.am find <hurd.h>.
-rw-r--r-- | example-22/Makefile.am | 3 | ||||
-rw-r--r-- | example/Makefile.am | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/example-22/Makefile.am b/example-22/Makefile.am index aae00931d..c700453d7 100644 --- a/example-22/Makefile.am +++ b/example-22/Makefile.am @@ -7,5 +7,4 @@ null_SOURCES = null.c hello_SOURCES = hello.c LDADD = ../libfuse.la -CFLAGS = @CFLAGS@ -DFUSE_USE_VERSION=22 - +AM_CPPFLAGS = -DFUSE_USE_VERSION=22 -I$(top_srcdir) diff --git a/example/Makefile.am b/example/Makefile.am index 510dff604..69bfa3af3 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -7,3 +7,4 @@ null_SOURCES = null.c hello_SOURCES = hello.c LDADD = ../libfuse.la +AM_CPPFLAGS = -I$(top_srcdir) |