Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
jh_exec: Fix chmod to set (not clear) the executable bit on jars
· 6671ba98
Tony Mancill
authored
Oct 09, 2018
6671ba98
prepare changelog for upload to unstable
· 19a24b0e
Tony Mancill
authored
Oct 09, 2018
19a24b0e
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
19a24b0e
javatools (0.70) unstable; urgency=medium
* Team upload.
* jh_exec: Fix chmod to set (not clear) the executable bit on jars
Thank you to Alexandre Rossi for reporting this problem.
-- tony mancill <tmancill@debian.org> Tue, 09 Oct 2018 20:28:11 -0700
javatools (0.69) unstable; urgency=medium
* Team upload.
...
...
jh_exec
View file @
19a24b0e
...
...
@@ -57,7 +57,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
closedir
(
$dirfd
)
or
error
("
closedir(
$dir
) failed: $!
");
}
}
xargs
(
\
@chmod_paths
,
'
chmod
',
'
-
x
')
if
@chmod_paths
;
xargs
(
\
@chmod_paths
,
'
chmod
',
'
+
x
')
if
@chmod_paths
;
=head1 SEE ALSO
...
...