From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6A8EF198005 for ; Wed, 27 Feb 2013 07:29:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0F89E075C; Wed, 27 Feb 2013 07:29:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8C807E075C for ; Wed, 27 Feb 2013 07:29:39 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A8AB433DC6C for ; Wed, 27 Feb 2013 07:29:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 38C82E4216 for ; Wed, 27 Feb 2013 07:29:37 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1361949823.7fe0d6472bcb82a6cc2776d53d3b9f5d63f0fdda.graaff@gentoo> Subject: [gentoo-commits] proj/ruby-scripts:master commit in: patchsets/patches-1.9.3_p392/ X-VCS-Repository: proj/ruby-scripts X-VCS-Files: patchsets/patches-1.9.3_p392/010_mkmf-parallel-install.patch X-VCS-Directories: patchsets/patches-1.9.3_p392/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 7fe0d6472bcb82a6cc2776d53d3b9f5d63f0fdda X-VCS-Branch: master Date: Wed, 27 Feb 2013 07:29:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7bbf88c9-94cb-42ef-afd5-dae2247513eb X-Archives-Hash: 4f0766824012d03c23128961784c2438 commit: 7fe0d6472bcb82a6cc2776d53d3b9f5d63f0fdda Author: Hans de Graaff degraaff org> AuthorDate: Wed Feb 27 07:23:43 2013 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Feb 27 07:23:43 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ruby-scripts.git;a=commit;h=7fe0d647 Apply fix for parallel building bug by Diego. --- .../010_mkmf-parallel-install.patch | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/patchsets/patches-1.9.3_p392/010_mkmf-parallel-install.patch b/patchsets/patches-1.9.3_p392/010_mkmf-parallel-install.patch new file mode 100644 index 0000000..bb80635 --- /dev/null +++ b/patchsets/patches-1.9.3_p392/010_mkmf-parallel-install.patch @@ -0,0 +1,15 @@ +Index: ruby-1.9.3-p392/lib/mkmf.rb +=================================================================== +--- ruby-1.9.3-p392.orig/lib/mkmf.rb ++++ ruby-1.9.3-p392/lib/mkmf.rb +@@ -2039,8 +2039,8 @@ static: $(STATIC_LIB)#{$extout ? " insta + end + for f in files + dest = "#{dir}/#{File.basename(f)}" +- mfile.print("install-rb#{sfx}: #{dest} #{dir}\n") +- mfile.print("#{dest}: #{f}\n") ++ mfile.print("install-rb#{sfx}: #{dest}\n") ++ mfile.print("#{dest}: #{f} #{timestamp_file(dir)}\n") + mfile.print("\t$(Q) $(#{$extout ? 'COPY' : 'INSTALL_DATA'}) #{f} $(@D#{sep})\n") + if defined?($installed_list) and !$extout + mfile.print("\t@echo #{dest}>>$(INSTALLED_LIST)\n")