diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:31:57 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:31:57 +0000 |
commit | e32351b3b39517f94e976062f91403a154488359 (patch) | |
tree | 7f296c82546daa6e14f83e7be291695186874a7f /Makefile.am | |
parent | 23e06fb205c2494dc8c44e976e27ca0a30c30ed2 (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 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 6637a7a..fd45374 100644 --- a/Makefile.am +++ b/Makefile.am @@ -23,8 +23,8 @@ AM_YFLAGS = -d bin_PROGRAMS = xgc -xgc_CFLAGS = $(DEP_CFLAGS) -D_BSD_SOURCE -xgc_LDADD = $(DEP_LIBS) -lm +xgc_CFLAGS = $(XGC_CFLAGS) -D_BSD_SOURCE +xgc_LDADD = $(XGC_LIBS) -lm xgc_SOURCES = \ choice.c \ |