diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-03-16 14:29:46 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-03-16 14:29:46 +0000 |
commit | 79ccd15c1bb329de4a8e75633f4d90579b16638b (patch) | |
tree | 8ff143d0f3995db33af1f4f318399e39d4f7d551 | |
parent | 810e142e651862ec6f5eed380b07eee16bb0cf22 (diff) |
Fix a typo that prevented the installation of some doc files in $(DESTDIR)
-rw-r--r-- | lib/fontconfig/doc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fontconfig/doc/Makefile b/lib/fontconfig/doc/Makefile index 321109d6b..bd5fa8232 100644 --- a/lib/fontconfig/doc/Makefile +++ b/lib/fontconfig/doc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2013/03/09 14:34:42 matthieu Exp $ +# $OpenBSD: Makefile,v 1.2 2013/03/16 14:29:45 matthieu Exp $ FONTCONFIG = ${.CURDIR}/../../../dist/fontconfig @@ -386,7 +386,7 @@ afterinstall: @for f in ${PDF_FILES} ${TXT_FILES} ${HTML_USER_FILES}; do \ echo "installing $$f" ; \ ${INSTALL_DATA} ${FONTCONFIG}/doc/$$f \ - ${DESDIR}${X11BASE}/share/doc/fontconfig ; \ + ${DESTDIR}${X11BASE}/share/doc/fontconfig ; \ done @for f in ${HTML_DEVEL_FILES}; do \ echo "installing $$f" ; \ |