Skip to content

Commit

Permalink
example/main: add missing $(DESTDIR) to standard include path
Browse files Browse the repository at this point in the history
This is used everywhere else so looks loke a simple omission.  Needed
when cross-compiling (or packaging) Clixon.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
  • Loading branch information
troglobit committed Feb 7, 2023
1 parent 327f9ee commit 56c94a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/main/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ endif

with_restconf = @with_restconf@

INCLUDES = -I$(includedir) @INCLUDES@
INCLUDES = -I$(DESTDIR)$(includedir) @INCLUDES@
LINKAGE = @LINKAGE@
LDFLAGS = @LDFLAGS@
CPPFLAGS = @CPPFLAGS@
Expand Down

0 comments on commit 56c94a9

Please sign in to comment.