Fix bashism in release testing target "tidy"
This commit is contained in:
4
Makefile
4
Makefile
@@ -316,9 +316,9 @@ author-test:
|
|||||||
#
|
#
|
||||||
tidy:
|
tidy:
|
||||||
if [ -x /usr/bin/perltidy ]; then \
|
if [ -x /usr/bin/perltidy ]; then \
|
||||||
for i in bin/*-*[^~]; do \
|
for i in $(ls -1 bin/*-* | grep -vE '~$'); do \
|
||||||
echo "tidying $$i"; \
|
echo "tidying $$i"; \
|
||||||
perltidy $$i \
|
perltidy $$i \
|
||||||
; done \
|
; done \
|
||||||
; fi
|
; fi
|
||||||
|
|
||||||
|
|||||||
1
debian/changelog
vendored
1
debian/changelog
vendored
@@ -2,6 +2,7 @@ xen-tools (4.9.2-1) UNRELEASED; urgency=medium
|
|||||||
|
|
||||||
* New upstream maintenance release
|
* New upstream maintenance release
|
||||||
+ Update list of Ubuntu and Debian releases.
|
+ Update list of Ubuntu and Debian releases.
|
||||||
|
+ Fix bashism in release testing target "tidy".
|
||||||
* Update upstream signing key to update its expiry date.
|
* Update upstream signing key to update its expiry date.
|
||||||
|
|
||||||
-- Axel Beckert <abe@debian.org> Mon, 09 Jan 2023 04:42:57 +0100
|
-- Axel Beckert <abe@debian.org> Mon, 09 Jan 2023 04:42:57 +0100
|
||||||
|
|||||||
Reference in New Issue
Block a user