summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2005-12-01 14:40:49 +0000
committerThomas Schwinge <tschwinge@gnu.org>2005-12-01 14:40:49 +0000
commit0cc7d5bd03c0bb9e9693c6fb7c63be2bb3771ea1 (patch)
tree787ba8c424e8aac0fa9f26c54714d6bda37c0db3
parent8ce4419f7fb672f3e23b66f03850038c0de07e2a (diff)
Make example*/Makefile.am find <hurd.h>.
-rw-r--r--example-22/Makefile.am3
-rw-r--r--example/Makefile.am1
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)