Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1 | From d60a8a86f6593738b5324ccd8fe3e6d84a1fe7bc Mon Sep 17 00:00:00 2001 |
| 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> |
| 3 | Date: Wed, 11 Dec 2019 14:18:36 +0100 |
| 4 | Subject: [PATCH] libparted/fs: add $sourcedir/lib to include paths |
| 5 | |
| 6 | Otherwise, getopt-pfx-core.h won't be found. |
| 7 | |
| 8 | Upstream-Status: Pending |
| 9 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> |
| 10 | --- |
| 11 | libparted/fs/Makefile.am | 2 +- |
| 12 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 13 | |
| 14 | diff --git a/libparted/fs/Makefile.am b/libparted/fs/Makefile.am |
| 15 | index 286bff6..65f45d3 100644 |
| 16 | --- a/libparted/fs/Makefile.am |
| 17 | +++ b/libparted/fs/Makefile.am |
| 18 | @@ -3,7 +3,7 @@ |
| 19 | # |
| 20 | # This file may be modified and/or distributed without restriction. |
| 21 | |
| 22 | -partedincludedir = -I$(top_builddir)/include -I$(top_srcdir)/include |
| 23 | +partedincludedir = -I$(top_builddir)/include -I$(top_srcdir)/include -I$(top_srcdir)/lib |
| 24 | |
| 25 | AM_CFLAGS = $(WARN_CFLAGS) |
| 26 | |