From 4641ea0102ddccbe57de71dba7d31993b4f0d5fe Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Wed, 20 Jul 2005 19:31:48 +0000 Subject: 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. --- Makefile.am | 4 ++-- configure.ac | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index b3308b2..014dd1a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,8 +21,8 @@ bin_PROGRAMS = bdftopcf -bdftopcf_CFLAGS = @DEP_CFLAGS@ -bdftopcf_LDADD = @DEP_LIBS@ +bdftopcf_CFLAGS = @BDFTOPCF_CFLAGS@ +bdftopcf_LDADD = @BDFTOPCF_LIBS@ bdftopcf_SOURCES = bdftopcf.c diff --git a/configure.ac b/configure.ac index 0bb0031..582cf30 100644 --- a/configure.ac +++ b/configure.ac @@ -31,8 +31,8 @@ AC_PROG_CC AC_PROG_INSTALL # Checks for pkg-config packages -PKG_CHECK_MODULES(DEP, xfont) -AC_SUBST(DEP_CFLAGS) -AC_SUBST(DEP_LIBS) +PKG_CHECK_MODULES(BDFTOPCF, xfont) +AC_SUBST(BDFTOPCF_CFLAGS) +AC_SUBST(BDFTOPCF_LIBS) AC_OUTPUT([Makefile]) -- cgit v1.2.3