diff options
author | Craig Small <csmall@dropbear.xyz> | 2022-08-29 19:16:49 +1000 |
---|---|---|
committer | Craig Small <csmall@dropbear.xyz> | 2022-08-29 19:16:49 +1000 |
commit | dcce8038bed372141bd97126a71ceee25bf48abf (patch) | |
tree | 86cae85c0b2e1823b51af80c754d5b50b9e23451 | |
parent | 56db0bd32c1b92b33e5af24f2c8c602589ab8154 (diff) | |
download | procps-ng-dcce8038bed372141bd97126a71ceee25bf48abf.tar.gz |
build-sys: Need to add libary includes
The default path didn't add the library includes. A standard
build would work, but a make distcheck would not.
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 075638a..444f6c7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,6 +9,7 @@ AM_CPPFLAGS = \ -include $(top_builddir)/config.h \ -I$(top_srcdir) \ -I$(top_srcdir)/include \ + -I$(top_srcdir)/library/include \ -Wno-unused-result \ -DLOCALEDIR=\"$(localedir)\" \ @HARDEN_CFLAGS@ |