diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2009-11-28 22:58:57 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2009-11-28 22:58:57 +0800 |
commit | 26983ede7239a7fa62164b2d34a5d344a69d046d (patch) | |
tree | 418aefe7924ec961c9a95a37f865471fb6fcea26 /mail/usendmail | |
parent | 7baca842caaf1dcea448f4ae313e1597aecbc90f (diff) | |
download | freebsd-ports-gnome-26983ede7239a7fa62164b2d34a5d344a69d046d.tar.gz freebsd-ports-gnome-26983ede7239a7fa62164b2d34a5d344a69d046d.tar.zst freebsd-ports-gnome-26983ede7239a7fa62164b2d34a5d344a69d046d.zip |
- Fix tr(1) usage
PR: 140941
Submitted by: Thomas-Martin Seck <tmseck@netcologne.de> (maintainer)
Diffstat (limited to 'mail/usendmail')
-rw-r--r-- | mail/usendmail/Makefile | 2 | ||||
-rw-r--r-- | mail/usendmail/files/patch-src_typesize.sh | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/mail/usendmail/Makefile b/mail/usendmail/Makefile index b6cc445cee10..bdb4e9b29266 100644 --- a/mail/usendmail/Makefile +++ b/mail/usendmail/Makefile @@ -7,7 +7,7 @@ PORTNAME= usendmail PORTVERSION= 0.1.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= http://www.ohse.de/uwe/usendmail/ diff --git a/mail/usendmail/files/patch-src_typesize.sh b/mail/usendmail/files/patch-src_typesize.sh new file mode 100644 index 000000000000..34a52947ccd5 --- /dev/null +++ b/mail/usendmail/files/patch-src_typesize.sh @@ -0,0 +1,11 @@ +--- src/typesize.sh.orig 2009-11-22 19:02:59.000000000 +0100 ++++ src/typesize.sh 2009-11-22 19:04:28.000000000 +0100 +@@ -21,7 +21,7 @@ + : + else + x=$? +- p=`echo $i | sed 's/ /_/g' | tr "[a-z]]" "[A-Z]"` ++ p=`echo $i | sed 's/ /_/g' | tr "[:lower:]" "[:upper:]"` + echo "#define SIZEOF_$p $x" + fi + fi |