1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00

- Fix tr(1) usage

PR:		140941
Submitted by:	Thomas-Martin Seck <tmseck@netcologne.de> (maintainer)
This commit is contained in:
Dmitry Marakasov 2009-11-28 14:58:57 +00:00
parent b028819216
commit 8a10c7461e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=244917
2 changed files with 12 additions and 1 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= usendmail
PORTVERSION= 0.1.6
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= mail
MASTER_SITES= http://www.ohse.de/uwe/usendmail/

View File

@ -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