From d359e6629d344506a6935df7c3f8b61da0822e5f Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Tue, 25 Jul 2006 18:14:21 +0000 Subject: [PATCH] Permit any IOC name as long as it has 'ioc' in it somewhere. This matches the current behavior of the wildcard in iocBoot/Makefile --- src/makeBaseApp/makeBaseApp.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/makeBaseApp/makeBaseApp.pl b/src/makeBaseApp/makeBaseApp.pl index f136a83b6..6ddfcd1c3 100755 --- a/src/makeBaseApp/makeBaseApp.pl +++ b/src/makeBaseApp/makeBaseApp.pl @@ -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;