diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2020-08-03 21:53:06 +0800 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2020-08-03 21:53:06 +0800 |
commit | 466a092fb2fb619f5348dc105ce09d6a9326bdaf (patch) | |
tree | ac492d10afa79226f4a419cc09751d177105e340 /Tools | |
parent | 178b0490c2df2674c6491d007e3b508bc939552d (diff) | |
download | freebsd-ports-gnome-466a092fb2fb619f5348dc105ce09d6a9326bdaf.tar.gz freebsd-ports-gnome-466a092fb2fb619f5348dc105ce09d6a9326bdaf.tar.zst freebsd-ports-gnome-466a092fb2fb619f5348dc105ce09d6a9326bdaf.zip |
Move script to a more appropriate location.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/sed_checked.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Tools/scripts/sed_checked.sh b/Tools/scripts/sed_checked.sh deleted file mode 100755 index 9c8c270f6099..000000000000 --- a/Tools/scripts/sed_checked.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -set -e -/usr/bin/sed -i.bak "$@" -for x in "${@}" ; do - if [ -f "${x}" ]; then - if cmp -s "${x}" "${x}".bak ; then - if [ ! -z "${REWARNFILE}" ]; then - echo - - REINPLACE_CMD ran, but did not modify file contents: ${x#${WRKSRC}/} >> ${REWARNFILE} - fi - fi - fi -done |