summaryrefslogtreecommitdiff
path: root/www-client/seamonkey/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-01-22 20:28:19 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-01-22 20:28:19 +0000
commitabaa75b10f899ada8dd05b23cc03205064394bc6 (patch)
treeeca3dd248b73b92013cba00a0fcc1edf2696e19a /www-client/seamonkey/files
parent24fd814c326e282c4321965c31f341dad77e270d (diff)
gentoo resync : 22.01.2021
Diffstat (limited to 'www-client/seamonkey/files')
-rw-r--r--www-client/seamonkey/files/seamonkey-2.53.6_beta1-confvars_use_posix_sh.patch56
1 files changed, 0 insertions, 56 deletions
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 <mozilla@hocat.ca>
-# 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
-