mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-22 03:41:27 +00:00
Whoever put X11_CFLAGS = ... $(X_CFLAGS) in the Makefile.in's was smoking
something potent. Should be @X_CFLAGS@, fixed.
This commit is contained in:
parent
2417b5129b
commit
9ef97ca84c
2 changed files with 2 additions and 2 deletions
|
@ -217,7 +217,7 @@ ifneq ($(X11QUAKE),)
|
|||
# Map the list of source files into a list of object files
|
||||
OBJSquake-x11 = $(patsubst %,$(BUILD_DIR)/x11/%,$(addsuffix .@OBJEXT@, $(basename $(ALL_X11_SRC) .c .s)))
|
||||
|
||||
X11_CFLAGS = -DX11 $(X_CFLAGS)
|
||||
X11_CFLAGS = -DX11 @X_CFLAGS@
|
||||
X11_LDFLAGS = @X_LIBS@ -lX11 @X11_SHM_LIB@ @X_EXTRA_LIBS@ -lm
|
||||
|
||||
# This can be thought of as a macro that makes sure that the x11
|
||||
|
|
|
@ -206,7 +206,7 @@ ifneq ($(X11QUAKE),)
|
|||
# Map the list of source files into a list of object files
|
||||
OBJSquake-x11 = $(patsubst %,$(BUILD_DIR)/x11/%,$(addsuffix .@OBJEXT@, $(basename $(ALL_X11_SRC) .c .s)))
|
||||
|
||||
X11_CFLAGS = -DX11 $(X_CFLAGS)
|
||||
X11_CFLAGS = -DX11 @X_CFLAGS@
|
||||
X11_LDFLAGS = @X_LIBS@ -lX11 @X11_SHM_LIB@ @X_EXTRA_LIBS@ -lm
|
||||
|
||||
# This can be thought of as a macro that makes sure that the x11
|
||||
|
|
Loading…
Reference in a new issue