diff options
-rw-r--r-- | postprocess/checkdeliver/checkdeliver.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/postprocess/checkdeliver/checkdeliver.pl b/postprocess/checkdeliver/checkdeliver.pl index a2c3800940ca..45005591c9a2 100644 --- a/postprocess/checkdeliver/checkdeliver.pl +++ b/postprocess/checkdeliver/checkdeliver.pl @@ -165,7 +165,8 @@ sub check foreach ( <DELIVERLOG> ) { next if ( /^LINK / ); # What's this modules' repository? - if ( /COPY (\w[\w\s-]*?)\/$module\/prj\/build.lst/ ) { + if ( /COPY\s+(.+?)\/$module\/prj\/build.lst/ ) { +# if ( /COPY (\w[\w\s-]*?)\/$module\/prj\/build.lst/ ) { $repository = $1; } # For now we concentrate on binaries, located in 'bin' or 'lib' and 'misc/build/<...>/[bin|lib]'. |