mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-25 13:41:45 +00:00
fix(includedir) Fix ordering if include dirs
There has been a long standind bug where INCLUDE_DIRS /usr/include is included twice. The more important problem is it is before the /usr/local/include. This commit fixes the ordering. Signed-off-by: Manoj Srivastava <srivasta@debian.org>
This commit is contained in:
parent
98047acd38
commit
13da404446
1 changed files with 3 additions and 1 deletions
|
@ -107,11 +107,13 @@ static const char *default_include_directories[] =
|
|||
This is defined as a placeholder. */
|
||||
# define INCLUDEDIR "."
|
||||
#endif
|
||||
INCLUDEDIR,
|
||||
#ifndef _AMIGA
|
||||
"/usr/gnu/include",
|
||||
"/usr/local/include",
|
||||
"/usr/include",
|
||||
INCLUDEDIR,
|
||||
#else
|
||||
INCLUDEDIR,
|
||||
#endif
|
||||
0
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue