diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:31:51 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:31:51 +0000 |
commit | b2de9b16ae9b7bfce8e7cc36f20a38084fa25469 (patch) | |
tree | f4fe9039fe3db960f902740e0036bc657556b1b6 /src/Makefile.am | |
parent | c0570ffdfa9ef913b5132b2069dd69491f77a8f8 (diff) |
Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
configure cache, you cache it, and the cached value is probably wrong.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 9afdd73..c530057 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -24,8 +24,8 @@ AM_YFLAGS = -d bin_PROGRAMS = twm -twm_CFLAGS = $(DEP_CFLAGS) -DXVENDORNAME=\"The\ X.org\ Foundation\" -DXORG_RELEASE=\"Release\ $(VERSION)\" -D_BSD_SOURCE -twm_LDADD = $(DEP_LIBS) +twm_CFLAGS = $(TWM_CFLAGS) -DXVENDORNAME=\"The\ X.org\ Foundation\" -DXORG_RELEASE=\"Release\ $(VERSION)\" -D_BSD_SOURCE +twm_LDADD = $(TWM_LIBS) twm_SOURCES = \ add_window.c \ |