Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • mika/sssd
  • guillem/debian-pkg-sssd
  • john.veitch/sssd
  • jgullberg/sssd
  • gioele/sssd
  • oktay454/sssd
  • sergiodj/sssd
  • 3v1n0/sssd
  • jfalk-guest/sssd
  • sathieu/sssd
  • dpward/sssd
  • sssd-team/sssd
  • ahasenack/sssd
  • jbicha/sssd
  • yrro-guest/sssd
15 results
Show changes
Commits on Source (2)
sssd (2.8.1-2) unstable; urgency=medium
* d/rules: Fix 'find' syntax to remove '*.egg-info' files/directories.
(Closes: #1026490)
-- Sergio Durigan Junior <sergiodj@debian.org> Tue, 03 Jan 2023 16:36:00 -0500
sssd (2.8.1-1) unstable; urgency=medium
* New upstream release.
......
......@@ -74,7 +74,9 @@ override_dh_install:
# remove files we don't want to install
find $(CURDIR)/debian/tmp/ -name '*.la' -exec rm '{}' ';'
find $(CURDIR)/debian/tmp/ -name '*.pyc' -exec rm '{}' ';'
find $(CURDIR)/debian/tmp/ -name '*.egg-info' -exec rm '{}' ';'
# We need to use '+' instead of ';' due to the way 'find' and
# 'rm' interact with each other.
find $(CURDIR)/debian/tmp/ -name '*.egg-info' -exec rm -r '{}' '+'
rm -f $(CURDIR)/debian/tmp/etc/rc.d/init.d/sssd
# match nn/nn/nnnn, replace with the date from changelog
......