From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Bogdan Marinescu Newsgroups: gmane.lisp.guile.devel Subject: [PATCH] byacc: fix potential parallel build issue Date: Wed, 9 Jan 2013 14:45:10 +0200 Message-ID: <1357735510-7295-1-git-send-email-bogdan.a.marinescu@intel.com> NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1357735330 5703 80.91.229.3 (9 Jan 2013 12:42:10 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 9 Jan 2013 12:42:10 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Wed Jan 09 13:42:27 2013 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TsuzC-0007zV-RN for guile-devel@m.gmane.org; Wed, 09 Jan 2013 13:42:26 +0100 Original-Received: from localhost ([::1]:59167 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tsuyw-0004Qt-OD for guile-devel@m.gmane.org; Wed, 09 Jan 2013 07:42:10 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:51205) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tsuys-0004Qo-90 for guile-devel@gnu.org; Wed, 09 Jan 2013 07:42:08 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tsuyl-0006ML-R5 for guile-devel@gnu.org; Wed, 09 Jan 2013 07:42:06 -0500 Original-Received: from mga14.intel.com ([143.182.124.37]:19931) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tsuyl-0006M7-Kt for guile-devel@gnu.org; Wed, 09 Jan 2013 07:41:59 -0500 Original-Received: from azsmga002.ch.intel.com ([10.2.17.35]) by azsmga102.ch.intel.com with ESMTP; 09 Jan 2013 04:41:57 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.84,436,1355126400"; d="scan'208";a="189288033" Original-Received: from bogdanm (HELO localhost.localdomain) ([10.237.105.166]) by AZSMGA002.ch.intel.com with ESMTP; 09 Jan 2013 04:41:56 -0800 X-Mailer: git-send-email 1.7.10.4 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 143.182.124.37 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:15374 Archived-At: Add explicit dependency for libpath.h on dynl.x which fixes a potential parallel build issue. The other file that includes libguile/libpath.h (libguile/load.c) already has an explicit dependency on libpath.h diff --git a/libguile/Makefile.am b/libguile/Makefile.am index e216435..016bd90 100644 --- a/libguile/Makefile.am +++ b/libguile/Makefile.am @@ -700,6 +700,7 @@ $(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES): scmconfig.h snarf.h guile-snarf-docs.in error.x: cpp-E.c posix.x: cpp-SIG.c load.x: libpath.h +dynl.x: libpath.h alldotdocfiles = $(DOT_DOC_FILES) $(EXTRA_DOT_DOC_FILES) snarf2checkedtexi = GUILE_AUTO_COMPILE=0 $(top_builddir)/meta/uninstalled-env guild snarf-check-and-output-texi