Backout r554139.

This commit is contained in:
Mathieu Arnold 2020-11-05 16:51:30 +00:00
parent 1319eb99f2
commit aeda355b1b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=554142
22 changed files with 0 additions and 29 deletions

View file

@ -4,7 +4,6 @@
# MAINTAINER: portmgr@FreeBSD.org
set -e
set pipefail
. "${dp_SCRIPTSDIR}/functions.sh"

View file

@ -12,7 +12,6 @@
# c. Files in plist which are owned by dependencies/MTREEs
set -e
set pipefail
. ${SCRIPTSDIR}/functions.sh

View file

@ -4,7 +4,6 @@
# MAINTAINER: portmgr@FreeBSD.org
set -e
set pipefail
. "${dp_SCRIPTSDIR}/functions.sh"

View file

@ -23,8 +23,6 @@
# The PLIST_SUB feature can be disabled by setting PLIST_SUB_SED=
# in environment.
set pipefail
[ -n "${DEBUG_MK_SCRIPTS}" -o -n "${DEBUG_MK_SCRIPTS_CHECK_LEFTOVERS}" ] && set -x
origin="$1"

View file

@ -4,7 +4,6 @@
# MAINTAINER: portmgr@FreeBSD.org
set -e
set pipefail
. "${dp_SCRIPTSDIR}/functions.sh"

View file

@ -4,7 +4,6 @@
# MAINTAINER: portmgr@FreeBSD.org
set -e
set pipefail
. "${dp_SCRIPTSDIR}/functions.sh"

View file

@ -3,7 +3,6 @@
# $FreeBSD$
set -e
set pipefail
. ${dp_SCRIPTSDIR}/functions.sh

View file

@ -4,7 +4,6 @@
# MAINTAINER: portmgr@FreeBSD.org
set -e
set pipefail
. "${dp_SCRIPTSDIR}/functions.sh"

View file

@ -2,7 +2,6 @@
# $FreeBSD$
# Maintainer: portmgr@FreeBSD.org
set -e
set pipefail
[ -n "${DEBUG_MK_SCRIPTS}" -o -n "${DEBUG_MK_SCRIPTS_DIALOG4PORTS}" ] && set -x

View file

@ -4,7 +4,6 @@
# MAINTAINER: portmgr@FreeBSD.org
set -e
set pipefail
. ${dp_SCRIPTSDIR}/functions.sh

View file

@ -4,7 +4,6 @@
# MAINTAINER: portmgr@FreeBSD.org
set -e
set pipefail
. "${dp_SCRIPTSDIR}/functions.sh"

View file

@ -4,7 +4,6 @@
# MAINTAINER: portmgr@FreeBSD.org
set -e
set pipefail
. "${dp_SCRIPTSDIR}/functions.sh"

View file

@ -4,7 +4,6 @@
# MAINTAINER: portmgr@FreeBSD.org
set -e
set pipefail
. "${dp_SCRIPTSDIR}/functions.sh"

View file

@ -2,8 +2,6 @@
# MAINTAINER: portmgr@FreeBSD.org
# $FreeBSD$
set pipefail
[ -n "${DEBUG_MK_SCRIPTS}" -o -n "${DEBUG_MK_SCRIPTS_FIND_LIB}" ] && set -x
if [ -z "${LIB_DIRS}" -o -z "${LOCALBASE}" ]; then

View file

@ -9,8 +9,6 @@
# /usr/local/bin/ssh -> /usr/local/lib/debug/usr/local/bin/ssh.debug
LIB_DIR_PREFIX="${LOCALBASE}/lib/debug"
set pipefail
msg() {
echo "====> $*"
}

View file

@ -4,7 +4,6 @@
# MAINTAINER: portmgr@FreeBSD.org
set -e
set pipefail
. "${dp_SCRIPTSDIR}/functions.sh"

View file

@ -4,7 +4,6 @@
# MAINTAINER: portmgr@FreeBSD.org
set -e
set pipefail
. "${dp_SCRIPTSDIR}/functions.sh"

View file

@ -5,8 +5,6 @@
#
# PLIST_SUB_SED helper to sort by longest value first.
set pipefail
awk '{
while (match($0, /s![^!]*![^!]*!g;/)) {
sedp=substr($0, RSTART, RLENGTH)

View file

@ -3,8 +3,6 @@
# MAINTAINER: portmgr@FreeBSD.org
# $FreeBSD$
set pipefail
if [ -z "${SCRIPTSDIR}" ]; then
echo "Must set SCRIPTSDIR" >&2
exit 1

View file

@ -2,8 +2,6 @@
# MAINTAINER: portmgr@FreeBSD.org
# $FreeBSD$
set pipefail
if [ -z "${STAGEDIR}" -o -z "${PREFIX}" -o -z "${LOCALBASE}" ]; then
echo "STAGEDIR, PREFIX, LOCALBASE required in environment." >&2
exit 1

View file

@ -2,7 +2,6 @@
# MAINTAINER: rust@FreeBSD.org
# $FreeBSD$
set -eu
set pipefail
if [ "${OPSYS}" != FreeBSD ] || [ "${OSVERSION}" -lt 1200000 ]; then
exit 0

View file

@ -25,8 +25,6 @@
# if those targets modify source files (e.g. with sed). You may also
# want to disable EXTRA_PATCHES as well if that is being used.
set pipefail
[ -n "${DEBUG_MK_SCRIPTS}" -o -n "${DEBUG_MK_SCRIPTS_SMART_MAKEPATCH}" ] && set -x
if [ -z "${PATCHDIR}" -o -z "${PATCH_WRKSRC}" -o -z "${WRKDIR}" ]; then