From 17c57f25c63839cb2fd360f2d95fbbd9c68193f2 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Wed, 27 Jan 2016 13:36:00 -0500 Subject: [PATCH] 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 --- compiler-rt.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt.spec b/compiler-rt.spec index 5389a35..b47b111 100644 --- a/compiler-rt.spec +++ b/compiler-rt.spec @@ -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