summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2022-10-25 09:55:51 +0100
committerSimon McVittie <smcv@debian.org>2022-10-27 09:59:43 +0100
commit190bad06d25fbffaf6674128ff37ba15fba30fba (patch)
treecf42fc0b392e3a75b9e06a20b990b7b2a602c3eb
parent959910f93362a0dc594e39aab822f552b4e267e7 (diff)
downloadflatpak-190bad06d25fbffaf6674128ff37ba15fba30fba.tar.gz
revokefs: Remove incorrect libglnx include directory
revokefs already gets the correct include directory from the AM_CPPFLAGS. This would also break the build with -Werror=missing-include-dirs. Signed-off-by: Simon McVittie <smcv@collabora.com>
-rw-r--r--revokefs/Makefile.am.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/revokefs/Makefile.am.inc b/revokefs/Makefile.am.inc
index e971a80f..6fc9c946 100644
--- a/revokefs/Makefile.am.inc
+++ b/revokefs/Makefile.am.inc
@@ -26,7 +26,7 @@ noinst_PROGRAMS += revokefs-demo
revokefs_fuse_SOURCES = revokefs/main.c revokefs/writer.c revokefs/writer.h
-revokefs_fuse_CFLAGS = $(BASE_CFLAGS) -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 $(FUSE_CFLAGS) -I$(srcdir)/libglnx
+revokefs_fuse_CFLAGS = $(BASE_CFLAGS) -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 $(FUSE_CFLAGS)
revokefs_fuse_LDADD = libglnx.la $(BASE_LIBS) $(FUSE_LIBS)
revokefs_demo_SOURCES = revokefs/demo.c