Accepting request 755251 from home:jbaier_cz:branches:devel:languages:perl

- Fix incorrect prefix removal in rpm macro %perl_gen_filelist (boo#1152247)

OBS-URL: https://build.opensuse.org/request/show/755251
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl?expand=0&rev=186
This commit is contained in:
Dirk Stoecker 2019-12-13 08:53:04 +00:00 committed by Git OBS Bridge
parent dfc941edbb
commit 3d34ad22b0
2 changed files with 6 additions and 1 deletions

View File

@ -83,7 +83,7 @@ for dir in `find ${base_dir} -type d | sort`; do\
if [ "$dir" = "${base_dir}" ]; then\
continue\
else\
el=`echo $dir | %{__awk} -F"${base_dir}" '{print $2}'`\
el=${dir#$base_dir}\
all_dir=(${all_dir[@]} $el)\
fi\
done\

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Dec 9 13:50:36 UTC 2019 - Jan Baier <jbaier@suse.com>
- Fix incorrect prefix removal in rpm macro %perl_gen_filelist (boo#1152247)
-------------------------------------------------------------------
Tue Dec 3 09:13:07 UTC 2019 - Martin Liška <mliska@suse.cz>