diff options
Diffstat (limited to 'lib/Debian/Debhelper/Sequence/movetousr.pm')
-rw-r--r-- | lib/Debian/Debhelper/Sequence/movetousr.pm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/Debian/Debhelper/Sequence/movetousr.pm b/lib/Debian/Debhelper/Sequence/movetousr.pm new file mode 100644 index 0000000..4f81c55 --- /dev/null +++ b/lib/Debian/Debhelper/Sequence/movetousr.pm @@ -0,0 +1,10 @@ +#!/usr/bin/perl +# Enable dh_movetousr + +use strict; +use warnings; + +$ENV{DH_INTERNAL_MOVETOUSR_IS_ADDON} = '1'; +insert_before('dh_installdeb', 'dh_movetousr'); + +1; |