From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Lirzin Subject: [Shepherd][PATCH 1/4] build: Build Guile objects before generating man pages. Date: Wed, 27 Jan 2016 21:45:31 +0100 Message-ID: <1453927534-32056-2-git-send-email-mthl@gnu.org> References: <1453927534-32056-1-git-send-email-mthl@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------2.7.0.rc3" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39311) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aOWyZ-0007uf-WB for guix-devel@gnu.org; Wed, 27 Jan 2016 15:46:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aOWyX-0000RH-GK for guix-devel@gnu.org; Wed, 27 Jan 2016 15:46:03 -0500 In-Reply-To: <1453927534-32056-1-git-send-email-mthl@gnu.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org This is a multi-part message in MIME format. --------------2.7.0.rc3 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: quoted-printable Before that, man pages were not successfully generated for VPATH builds. * Makefile.am (BUILT_SOURCES): Add every '.go' files. --- Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --------------2.7.0.rc3 Content-Type: text/x-patch; name="0001-build-Build-Guile-objects-before-generating-man-page.patch" Content-Disposition: inline; filename="0001-build-Build-Guile-objects-before-generating-man-page.patch" Content-Transfer-Encoding: quoted-printable diff --git a/Makefile.am b/Makefile.am index dcffcea..6ebd0f1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,7 +26,11 @@ templates =3D \ modules/shepherd/system.scm.in =20 # Build this module first. -BUILT_SOURCES =3D modules/shepherd/config.scm +BUILT_SOURCES =3D \ + $(nodist_shepherdsub_DATA) \ + $(nodist_scripts_DATA) \ + $(nodist_guilemodule_DATA) + =20 # The source files. # XXX: we can't use 'nobase_' because of the modules/ subdirectory. --------------2.7.0.rc3--