Skip to content

Commit

Permalink
Substitute -isystem with -I
Browse files Browse the repository at this point in the history
  • Loading branch information
singul4ri7y committed Aug 13, 2024
1 parent 8116301 commit 5125555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ INSTALL_DATA= $(INSTALL) -m 0644
# C compilation flags
CFLAGS = -DPT_DEBUG -g -std=c99 -pedantic -Wall -Wextra -Wformat-security
# Explicitly mention which Lua headers to capture
CPPFLAGS = -isystem$(LUA_INCDIR) -I.
CPPFLAGS = -I$(LUA_INCDIR) -I.
LIBFLAG = -fPIC -shared

# The -Wl,-E tells the linker to not throw away unused Lua API symbols.
Expand Down

0 comments on commit 5125555

Please sign in to comment.