From abaa75b10f899ada8dd05b23cc03205064394bc6 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 22 Jan 2021 20:28:19 +0000 Subject: gentoo resync : 22.01.2021 --- ...monkey-2.53.6_beta1-confvars_use_posix_sh.patch | 56 ---------------------- 1 file changed, 56 deletions(-) delete mode 100644 www-client/seamonkey/files/seamonkey-2.53.6_beta1-confvars_use_posix_sh.patch (limited to 'www-client/seamonkey/files') diff --git a/www-client/seamonkey/files/seamonkey-2.53.6_beta1-confvars_use_posix_sh.patch b/www-client/seamonkey/files/seamonkey-2.53.6_beta1-confvars_use_posix_sh.patch deleted file mode 100644 index a2be4a20e106..000000000000 --- a/www-client/seamonkey/files/seamonkey-2.53.6_beta1-confvars_use_posix_sh.patch +++ /dev/null @@ -1,56 +0,0 @@ - -# HG changeset patch -# User Tom Prince -# Date 1516732239 25200 -# Node ID 5fad234e2e846377d9361f8ea500556dbf523da8 -# Parent 266495d41b7376f67e1999b769205bc6ca8e40bf -Bug 1399679: Use posix shell in comm-confvars.sh; r=me - ---- a/comm/comm-confvars.sh -+++ b/comm/comm-confvars.sh -@@ -1,24 +1,26 @@ - #!/bin/sh - --if [[ "$MOZ_BUILD_APP" == *comm* ]] --then -- # we are building with comm/ as the subdirectory -- # $srcdir is the mozilla repo, comm is in the subdir -- moztopsrcdir=$srcdir -- commtopsrcdir=$srcdir/comm -+case "$MOZ_BUILD_APP" in -+ *comm*) -+ # we are building with comm/ as the subdirectory -+ # $srcdir is the mozilla repo, comm is in the subdir -+ moztopsrcdir=$srcdir -+ commtopsrcdir=$srcdir/comm - -- mozreltopsrcdir=. -- commreltopsrcdir=comm -+ mozreltopsrcdir=. -+ commreltopsrcdir=comm - -- commtopobjdir=$_objdir/comm --else -- # we are building with mozilla/ as the subdirectory -- # $srcdir is still the mozilla repo, so use the parent for comm -- moztopsrcdir=$srcdir -- commtopsrcdir=$srcdir/.. -+ commtopobjdir=$_objdir/comm -+ ;; -+ *) -+ # we are building with mozilla/ as the subdirectory -+ # $srcdir is still the mozilla repo, so use the parent for comm -+ moztopsrcdir=$srcdir -+ commtopsrcdir=$srcdir/.. - -- mozreltopsrcdir=mozilla -- commreltopsrcdir=. -+ mozreltopsrcdir=mozilla -+ commreltopsrcdir=. - -- commtopobjdir=$_objdir --fi -+ commtopobjdir=$_objdir -+ ;; -+esac - -- cgit v1.2.3