diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:32:03 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:32:03 +0000 |
commit | 4f970b38bdd2199adcd3510a84db12bcbf94c685 (patch) | |
tree | 8c08a62a469bcf351b1a75527cc4d2315306f8d6 | |
parent | 721114f44cbd225a8fcd3655d4ded2dc8cc8837f (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.
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 33bfc62..8f1ff17 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,8 +21,8 @@ bin_PROGRAMS = xprop -xprop_CFLAGS = $(DEP_CFLAGS) -xprop_LDADD = $(DEP_LIBS) +xprop_CFLAGS = $(XPROP_CFLAGS) +xprop_LDADD = $(XPROP_LIBS) xprop_SOURCES = \ dsimple.c \ diff --git a/configure.ac b/configure.ac index 8c5e52c..33ccd1b 100644 --- a/configure.ac +++ b/configure.ac @@ -32,8 +32,8 @@ AC_PROG_CC AC_PROG_INSTALL # Checks for pkg-config packages -PKG_CHECK_MODULES(DEP, xmu x11) -AC_SUBST(DEP_CFLAGS) -AC_SUBST(DEP_LIBS) +PKG_CHECK_MODULES(XPROP, xmu x11) +AC_SUBST(XPROP_CFLAGS) +AC_SUBST(XPROP_LIBS) AC_OUTPUT([Makefile]) |