diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-07-30 22:24:12 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-07-30 22:24:12 +0800 |
commit | 9f431af8de4c5e44e056b0f8338fcbac4fbf61ed (patch) | |
tree | d84fddb3585c4dc536ba243ac84347a243c7adad | |
parent | 45c166aed986ab630c5c7ab89ba70e6ecd3251b6 (diff) | |
download | freebsd-ports-gnome-9f431af8de4c5e44e056b0f8338fcbac4fbf61ed.tar.gz freebsd-ports-gnome-9f431af8de4c5e44e056b0f8338fcbac4fbf61ed.tar.zst freebsd-ports-gnome-9f431af8de4c5e44e056b0f8338fcbac4fbf61ed.zip |
Trap signal 31 as well (typo).
Submitted by: "Alexey V. Neyman" <alex.neyman@auriga.ru>
-rwxr-xr-x | Tools/scripts/distclean.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/distclean.sh b/Tools/scripts/distclean.sh index 2d1f6cdb5c30..2dd2b8aacd40 100755 --- a/Tools/scripts/distclean.sh +++ b/Tools/scripts/distclean.sh @@ -14,7 +14,7 @@ # Maxim Sobolev # ---------------------------------------------------------------------------- # -# $FreeBSD: /tmp/pcvs/ports/Tools/scripts/distclean.sh,v 1.9 2001-07-30 09:01:12 sobomax Exp $ +# $FreeBSD: /tmp/pcvs/ports/Tools/scripts/distclean.sh,v 1.10 2001-07-30 14:24:12 sobomax Exp $ # # MAINTAINER= sobomax@FreeBSD.org @@ -45,7 +45,7 @@ FN_DISTFILES=`mktemp -t dclean` || exit 1 FN_RESULTS_SCRIPT=`mktemp -t dclean` || exit 1 trap cleanup 1 2 3 4 5 6 7 8 10 11 12 13 14 15 16 21 22 23 24 25 26 27 28 29 \ - 30 21 + 30 31 echo -n "Building ports md5 index..." find /usr/ports/ -name "distinfo" -or -name "distinfo.i386" -or -name "distinfo.alpha" -type f | xargs cat | grep "^MD5 ("| sort | uniq > $FN_PORTS |