- Fix an unquoted slash within a matching operator

PR:		ports/69717
Submitted by:	TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
Approved by:	maintainer
This commit is contained in:
Pav Lucistnik 2004-07-30 12:27:20 +00:00
parent 4ef36a50ee
commit 2e4148e2c9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=115079
2 changed files with 2 additions and 1 deletions

View file

@ -7,6 +7,7 @@
PORTNAME= jailuser
PORTVERSION= 1.9
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= jail

View file

@ -17,7 +17,7 @@
close(F);
for $k (@elem) {
! if ($k =~ /^$INSTALL_DIR\/bin/jail/) {
! if ($k =~ /^$INSTALL_DIR\/bin\/jail/) {
$found = 1;
last;
}