SHA256
1
0
forked from pool/cloud-init

Accepting request 566321 from home:dimstar:Factory

- Fix usage of fdupes macro: there is no '-n' parameter to the
  macro (there would be to fdupes, the command, though).

Removing -n here results in the same package we had before; RPM prior to 4.14 reported this as warning in the buildlog, RPM 4.14 now marks it as error.

OBS-URL: https://build.opensuse.org/request/show/566321
OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/cloud-init?expand=0&rev=102
This commit is contained in:
Robert Schweikert 2018-01-16 13:57:10 +00:00 committed by Git OBS Bridge
parent 529dfe1b71
commit 6ee1dc660c
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