From owner-cvs-doc@FreeBSD.ORG Mon Apr 5 15:53:44 2004 Return-Path: Delivered-To: cvs-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25AD016A4CE; Mon, 5 Apr 2004 15:53:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20E4543D48; Mon, 5 Apr 2004 15:53:44 -0700 (PDT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i35MrhGe027435; Mon, 5 Apr 2004 15:53:43 -0700 (PDT) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i35Mrh2O027434; Mon, 5 Apr 2004 15:53:43 -0700 (PDT) (envelope-from simon) Message-Id: <200404052253.i35Mrh2O027434@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Mon, 5 Apr 2004 15:53:43 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/mk doc.docbook.mk doc.images.mk X-BeenThere: cvs-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the doc and www trees List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Apr 2004 22:53:44 -0000 simon 2004/04/05 15:53:43 PDT FreeBSD doc repository Modified files: share/mk doc.docbook.mk doc.images.mk Log: Really unbreak creation of PDF documents which use "shared" PNG images: The previous fix only worked in some cases, so back it out and add a more clean fix. This fix also makes "make clean" work as expected again for the shared PNG images. The real problem is the assumption in doc.images.mk that the ${IMAGES_PDF} variable only need to contain images converted to PDF format and not images which are already in PNG format. We need to list the PNG images in ${IMAGES_PDF} since they might be in a shared image directory, and if we don't list them in ${IMAGES_PDF} they will not be copied to the working directory and will therefor not be found during build. Prompted by: phantom Revision Changes Path 1.105 +1 -1 doc/share/mk/doc.docbook.mk 1.27 +3 -4 doc/share/mk/doc.images.mk