opnsense-ports/security/nss/files/patch-tests
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

10 lines
364 B
Text

--- tests/common/init.sh Mon Apr 11 22:24:17 2005
+++ tests/common/init.sh Fri Jul 22 16:55:36 2005
@@ -197,5 +197,6 @@
case $HOST in
*\.*)
- HOST=`echo $HOST | sed -e "s/\..*//"`
+ DOMSUF=${HOST#*.} # remove Smallest Prefix matching ``*.''
+ HOST=${HOST%%.*} # remove Largest Suffix ``.*''. See sh(1)
;;
?*)