diff options
author | Keith Packard <keithp@neko.keithp.com> | 2006-08-31 18:14:45 -0700 |
---|---|---|
committer | Keith Packard <keithp@neko.keithp.com> | 2006-08-31 18:14:45 -0700 |
commit | bf0c80fc4996157dda7bed8b8b2e4c8a13611ada (patch) | |
tree | 0998d17e0dcc11ef24eab001e41978722d6bcf17 /fc-cache | |
parent | f57783d2e9c7362b1e5d5e3a967ba90fa49ade6e (diff) |
Change $(pkgcachedir) to $(fc_cachedir) in fc-cat and fc-cache Makefile.am
make distcheck caught this bug; the effect of 'make uninstall'
would have been to execute 'rm -rf /', somewhat less that desirable.
Diffstat (limited to 'fc-cache')
-rw-r--r-- | fc-cache/Makefile.am | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fc-cache/Makefile.am b/fc-cache/Makefile.am index 3700c4a..4bb767b 100644 --- a/fc-cache/Makefile.am +++ b/fc-cache/Makefile.am @@ -27,13 +27,11 @@ FC_CACHE_SRC=${top_srcdir}/fc-cache SGML = ${FC_CACHE_SRC}/fc-cache.sgml -AM_CPPFLAGS = -DPKGCACHEDIR='"${pkgcachedir}"' - install-data-local: - -$(mkinstalldirs) "$(DESTDIR)$(pkgcachedir)" + -$(mkinstalldirs) "$(DESTDIR)$(fc_cachedir)" uninstall-local: - -$(RM) -rf "$(DESTDIR)$(pkgcachedir)" + -$(RM) -rf "$(DESTDIR)$(fc_cachedir)" INCLUDES=-I${top_srcdir} -I${top_srcdir}/src $(FREETYPE_CFLAGS) |