diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:31:48 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-07-20 19:31:48 +0000 |
commit | 4641ea0102ddccbe57de71dba7d31993b4f0d5fe (patch) | |
tree | 118910e28ac06624ac6105b00810ac2119e8c5d7 | |
parent | a1714821678853a349cfeb735e5cc2c05d7d7e10 (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 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]) |