Permit any IOC name as long as it has 'ioc' in it somewhere.

This matches the current behavior of the wildcard in iocBoot/Makefile
This commit is contained in:
Andrew Johnson
2006-07-25 18:14:21 +00:00
parent 26938a98ed
commit d359e6629d

View File

@@ -126,7 +126,7 @@ if ($opt_i) {
$appname=$appnameIn if $appnameIn;
foreach $ioc ( @names ) {
($appname = $ioc) =~ s/App$// if !$appnameIn;
$ioc = "ioc" . $ioc unless ($ioc =~ /^ioc/);
$ioc = "ioc" . $ioc unless ($ioc =~ /ioc/);
if (-d "iocBoot/$ioc") {
print "iocBoot/$ioc exists, not modified.\n";
next;