r51703 - in /desktop/unstable/gvfs/debian: changelog rules
biebl at users.alioth.debian.org
biebl at users.alioth.debian.org
Tue Nov 8 15:43:09 UTC 2016
Author: biebl
Date: Tue Nov 8 15:43:09 2016
New Revision: 51703
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=51703
Log:
Explicitly remove .h header files instead of using dh_install -X.h. This
avoids not installing required files which are not header files but
contain .h anywhere in the filename.
Modified:
desktop/unstable/gvfs/debian/changelog
desktop/unstable/gvfs/debian/rules
Modified: desktop/unstable/gvfs/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gvfs/debian/changelog?rev=51703&op=diff
==============================================================================
--- desktop/unstable/gvfs/debian/changelog [utf-8] (original)
+++ desktop/unstable/gvfs/debian/changelog [utf-8] Tue Nov 8 15:43:09 2016
@@ -1,7 +1,13 @@
gvfs (1.30.2-2) UNRELEASED; urgency=medium
+ [ Laurent Bigonville ]
* debian/patches/02_polkit_sudo_group.patch: Use sudo group instead of the
wheel one, the later doesn't exist on debian
+
+ [ Michael Biebl ]
+ * Explicitly remove .h header files instead of using dh_install -X.h. This
+ avoids not installing required files which are not header files but
+ contain .h anywhere in the filename.
-- Laurent Bigonville <bigon at debian.org> Tue, 08 Nov 2016 14:02:28 +0100
Modified: desktop/unstable/gvfs/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gvfs/debian/rules?rev=51703&op=diff
==============================================================================
--- desktop/unstable/gvfs/debian/rules [utf-8] (original)
+++ desktop/unstable/gvfs/debian/rules [utf-8] Tue Nov 8 15:43:09 2016
@@ -25,8 +25,9 @@
dh_strip --dbgsym-migration='gvfs-dbg (<< 1.28.0-1~)'
override_dh_install:
- find debian -name '*.la' -delete
- dh_install --fail-missing -X.h
+ find debian/tmp -name '*.la' -delete
+ find debian/tmp -name '*.h' -delete
+ dh_install --fail-missing
override_dh_makeshlibs:
dh_makeshlibs --no-act
More information about the pkg-gnome-commits
mailing list