diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 10:17:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 10:17:27 +0000 |
commit | 7b3d5890037484a6ee4573744869f28301902a8b (patch) | |
tree | 421062658afbf3303827539a888f86d5f73432ba /dh_installemacsen | |
parent | Releasing progress-linux version 13.16-0.0~progress7.99u1. (diff) | |
download | debhelper-7b3d5890037484a6ee4573744869f28301902a8b.tar.xz debhelper-7b3d5890037484a6ee4573744869f28301902a8b.zip |
Merging upstream version 13.17.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dh_installemacsen')
-rwxr-xr-x | dh_installemacsen | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/dh_installemacsen b/dh_installemacsen index bae900a..b2d7cfb 100755 --- a/dh_installemacsen +++ b/dh_installemacsen @@ -97,10 +97,38 @@ if (! defined $dh{FLAVOR}) { foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); - my $emacsen_compat=pkgfile($package,"emacsen-compat"); - my $emacsen_install=pkgfile($package,"emacsen-install"); - my $emacsen_remove=pkgfile($package,"emacsen-remove"); - my $emacsen_startup=pkgfile($package,"emacsen-startup"); + my $emacsen_compat = pkgfile( + { + 'named' => 0, + 'support-architecture-restriction' => 0, + }, + $package, + "emacsen-compat", + ); + my $emacsen_install = pkgfile( + { + 'named' => 0, + 'support-architecture-restriction' => 0, + }, + $package, + "emacsen-install", + ); + my $emacsen_remove = pkgfile( + { + 'named' => 0, + 'support-architecture-restriction' => 0, + }, + $package, + "emacsen-remove", + ); + my $emacsen_startup = pkgfile( + { + 'named' => 0, + 'support-architecture-restriction' => 0, + }, + $package, + "emacsen-startup", + ); if ($emacsen_compat ne '') { install_dir("$tmp/usr/lib/emacsen-common/packages/compat"); |