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 F08341381F3 for ; Fri, 12 Jul 2013 17:37:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B87EDE09DB; Fri, 12 Jul 2013 17:37:05 +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 B7F40E09B0 for ; Fri, 12 Jul 2013 17:37:04 +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 D56C733EA18 for ; Fri, 12 Jul 2013 17:37:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 30F26E5465 for ; Fri, 12 Jul 2013 17:37:01 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1371508187.10f6d6a5ecc03e037409595fc457838db532f770.bicatali@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/htcondor/files/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/htcondor/files/fix_sandbox_violations-8.0.0.patch X-VCS-Directories: sys-cluster/htcondor/files/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: 10f6d6a5ecc03e037409595fc457838db532f770 X-VCS-Branch: master Date: Fri, 12 Jul 2013 17:37:01 +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: cc1be3d1-5a6a-466f-9f4a-4a2d57002e73 X-Archives-Hash: 01ccb016a8b7d7936350518b1ee67922 commit: 10f6d6a5ecc03e037409595fc457838db532f770 Author: Chris Kerr cam ac uk> AuthorDate: Mon Jun 17 22:29:47 2013 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Mon Jun 17 22:29:47 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=10f6d6a5 Looks like the condor_tools patch also requires backslashes --- sys-cluster/htcondor/files/fix_sandbox_violations-8.0.0.patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-cluster/htcondor/files/fix_sandbox_violations-8.0.0.patch b/sys-cluster/htcondor/files/fix_sandbox_violations-8.0.0.patch index 3525161..c7c32a2 100644 --- a/sys-cluster/htcondor/files/fix_sandbox_violations-8.0.0.patch +++ b/sys-cluster/htcondor/files/fix_sandbox_violations-8.0.0.patch @@ -20,15 +20,15 @@ set( SRC_DIR ${CMAKE_SOURCE_DIR} ) set( BIN_DIR ${CMAKE_BINARY_DIR} ) - install( CODE "execute_process(COMMAND mkdir -p ${CMAKE_INSTALL_PREFIX}/lib/condor)" ) -+ install( CODE "execute_process(COMMAND mkdir -p $ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/condor)" ) ++ install( CODE "execute_process(COMMAND mkdir -p \$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/lib/condor)" ) install( CODE "execute_process(COMMAND ${SRC_DIR}/src/condor_scripts/print-libs ${BIN_DIR}/src/condor_tools/condor_version ${SRC_DIR}/src/condor_scripts/syslib-patterns - COMMAND xargs -isrc cp src ${CMAKE_INSTALL_PREFIX}/lib/condor -+ COMMAND xargs -isrc cp src $ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/condor ++ COMMAND xargs -isrc cp src \$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/lib/condor )" ) # This is required for opensuse, where the system's libssl and # libcrypto files don't have owner write permission. - install( CODE "execute_process(COMMAND chmod -R u+w ${CMAKE_INSTALL_PREFIX}/lib/condor/)" ) -+ install( CODE "execute_process(COMMAND chmod -R u+w $ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/condor/)" ) ++ install( CODE "execute_process(COMMAND chmod -R u+w \$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/lib/condor/)" ) endif() ############################################################