Fix FTBFS on i686

mv: cannot stat '/builddir/build/BUILDROOT/compiler-rt-3.7.1-1.fc24.i386/usr/dfsan_abilist.txt': No such file or directory
This commit is contained in:
Adam Jackson 2016-01-27 13:36:00 -05:00
parent ce075fcd17
commit 17c57f25c6
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ make install DESTDIR=%{buildroot}
# move sanitizer lists to better place
mkdir -p %{buildroot}%{_datadir}/%{name}
for file in asan_blacklist.txt dfsan_abilist.txt msan_blacklist.txt; do
mv -v %{buildroot}%{_prefix}/${file} %{buildroot}%{_datadir}/%{name}/
mv -v %{buildroot}%{_prefix}/${file} %{buildroot}%{_datadir}/%{name}/ || :
done
%check