SHA256
1
0
forked from pool/cloud-init
Dominique Leuenberger 2018-01-17 20:57:58 +00:00 committed by Git OBS Bridge
commit d326454b18
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Jan 16 10:03:00 UTC 2018 - dimstar@opensuse.org
- Fix usage of fdupes macro: there is no '-n' parameter to the
macro (there would be to fdupes, the command, though).
-------------------------------------------------------------------
Wed Dec 6 13:08:04 UTC 2017 - rjschwei@suse.com

View File

@ -304,9 +304,9 @@ popd
# remove duplicate files
%if 0%{?suse_version}
%if 0%{?suse_version} <= 1315
%fdupes -n %{buildroot}%{python_sitelib}
%fdupes %{buildroot}%{python_sitelib}
%else
%fdupes -n %{buildroot}%{python3_sitelib}
%fdupes %{buildroot}%{python3_sitelib}
%endif
%endif