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 | 95191a911fce864af7349df2377363885e4c920f (patch) | |
tree | 0c6f37312c9ae9783bde26c79aa47001cf7a5c18 | |
parent | c4b22b69df1162dab5db3691053ac0b6fb4c4503 (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 358cc6d..0e9fed7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,8 +21,8 @@ bin_PROGRAMS = xkbprint -xkbprint_CFLAGS = $(DEP_CFLAGS) -xkbprint_LDADD = $(DEP_LIBS) +xkbprint_CFLAGS = $(XKBPRINT_CFLAGS) +xkbprint_LDADD = $(XKBPRINT_LIBS) xkbprint_SOURCES = \ isokeys.h \ diff --git a/configure.ac b/configure.ac index 3a33fb9..de35361 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, xkbfile) -AC_SUBST(DEP_CFLAGS) -AC_SUBST(DEP_LIBS) +PKG_CHECK_MODULES(XKBPRINT, xkbfile) +AC_SUBST(XKBPRINT_CFLAGS) +AC_SUBST(XKBPRINT_LIBS) AC_OUTPUT([Makefile]) |