Skip to content

Commit

Permalink
Fix iniparser.h include
Browse files Browse the repository at this point in the history
In configure.ac `iniparser.h` was checked without a path too,
this change makes it consistent and fixes building on Arch Linux
which has the header installed in /usr/include directly.

Reported-by: Joao Martins <[email protected]>
Signed-off-by: Felix Yan <[email protected]>
Signed-off-by: Vishal Verma <[email protected]>
Link: #186
  • Loading branch information
felixonmars authored and stellarhopper committed Jan 4, 2022
1 parent 57be068 commit addc5fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/parse-configs.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <iniparser/iniparser.h>
#include <iniparser.h>
#include <sys/stat.h>
#include <util/parse-configs.h>
#include <util/strbuf.h>
Expand Down

0 comments on commit addc5fd

Please sign in to comment.