summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2021-02-27 14:19:01 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2021-02-27 15:32:44 -0800
commitcfe6c01896e9606f321e62f77be0b922be419999 (patch)
tree40df50a42bae1ce96cee591e45a516ac08ce8b29
parentb7da0d659e2a1e5936bba6fee3a60329eef967ac (diff)
downloadpaxutils-cfe6c01896e9606f321e62f77be0b922be419999.tar.gz
rmt: fix missing include
* rmt/Makefile.am (AM_CPPFLAGS): Add $(top_srcdir)/paxlib, for system.h’s ‘#include <paxlib.h>’.
-rw-r--r--rmt/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/rmt/Makefile.am b/rmt/Makefile.am
index e1db685..950b3c8 100644
--- a/rmt/Makefile.am
+++ b/rmt/Makefile.am
@@ -4,7 +4,8 @@ EXTRA_PROGRAMS = rmt
rmt_SOURCES = rmt.c
-AM_CPPFLAGS = -I$(top_srcdir)/gnu -I../ -I../gnu -I$(top_srcdir)/lib
+AM_CPPFLAGS = -I$(top_srcdir)/gnu -I../ -I../gnu -I$(top_srcdir)/lib \
+ -I$(top_srcdir)/paxlib
LDADD = ../gnu/libgnu.a $(LIBINTL)