summaryrefslogtreecommitdiff
path: root/prj_install.pl
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2008-05-21 11:43:51 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2008-05-21 11:43:51 +0000
commit93e9f824250bfe32ac7754f1f75f013634b4706e (patch)
treec7d4f151c00bd749c7daf09548b10bb036598408 /prj_install.pl
parentac8b0b5f1df59187271a2c76756f1547892fd3dd (diff)
downloadMPC-93e9f824250bfe32ac7754f1f75f013634b4706e.tar.gz
ChangeLogTag: Wed May 21 11:43:19 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'prj_install.pl')
-rwxr-xr-xprj_install.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/prj_install.pl b/prj_install.pl
index e9f27e6e..29bf003e 100755
--- a/prj_install.pl
+++ b/prj_install.pl
@@ -23,7 +23,7 @@ use File::Basename;
# ******************************************************************
my($insext) = 'ins';
-my($version) = '1.8';
+my($version) = '1.9';
my(%defaults) = ('header_files' => 1,
'idl_files' => 1,
'inline_files' => 1,
@@ -152,7 +152,7 @@ sub determineSpecialName {
if (opendir($fh, $odir)) {
foreach my $file (grep(!/^\.\.?$/, readdir($fh))) {
if ($file =~ /^lib$name\.(a|so|sl)/ ||
- $file =~ /^$name.*\.(dll|lib)$/i) {
+ $file =~ /^(lib)?$name.*\.(dll|lib)$/i) {
push(@libs, "$dir$insdir$file");
}
}