summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am4
-rw-r--r--configure.ac6
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])