From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on sa.int.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-8.2 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_HI, SPF_PASS autolearn=ham version=3.2.5 From: Mike Frysinger To: kbd@lists.altlinux.org Date: Sun, 20 Jan 2013 13:37:33 -0500 Message-Id: <1358707053-30812-1-git-send-email-vapier@gentoo.org> X-Mailer: git-send-email 1.8.0.2 Subject: [kbd] [PATCH] [loadkeys branch] fix parallel builds X-BeenThere: kbd@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: Linux console tools development discussion List-Id: Linux console tools development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Jan 2013 18:41:12 -0000 Archived-At: List-Archive: The lex code will try to run two in parallel. Signed-off-by: Mike Frysinger --- src/libkeymap/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libkeymap/Makefile.am b/src/libkeymap/Makefile.am index 5cf18c8..a200c9a 100644 --- a/src/libkeymap/Makefile.am +++ b/src/libkeymap/Makefile.am @@ -22,4 +22,4 @@ libkeymap_la_SOURCES = \ AM_LFLAGS = --header-file=$(CURDIR)/analyze.h BUILT_SOURCES = parse.c analyze.c parse.h analyze.h CLEANFILES = $(BUILT_SOURCES) - +parse.h: parse.c ; @true -- 1.8.0.2