aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mageia.org>2023-01-30 20:48:45 +0000
committerPascal Terjan <pterjan@mageia.org>2023-01-30 20:48:45 +0000
commitc44235ae36864fde784a1c461966e0d4f0a86258 (patch)
treeee5687edb468e6e6b13d384cc0315008eedf0c24
parent62d180e54b9d273d785006deff4333aadd5c61df (diff)
downloadiurt-c44235ae36864fde784a1c461966e0d4f0a86258.tar
iurt-c44235ae36864fde784a1c461966e0d4f0a86258.tar.gz
iurt-c44235ae36864fde784a1c461966e0d4f0a86258.tar.bz2
iurt-c44235ae36864fde784a1c461966e0d4f0a86258.tar.xz
iurt-c44235ae36864fde784a1c461966e0d4f0a86258.zip
Fix syntax checks to use local tree0.8.2.1
-rw-r--r--Makefile6
-rw-r--r--NEWS3
-rwxr-xr-xiurt2
3 files changed, 7 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index c87ef72..7b555cc 100644
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,7 @@ TESTS = $(wildcard t/*.t)
.PHONY: $(TESTS)
$(TESTS):
perl -Ilib $@
- perl -c ulri
- perl -c iurt
- perl -c emi
+ perl -Ilib -c ulri
+ perl -Ilib -c iurt
+ perl -Ilib -c emi
check: $(TESTS)
diff --git a/NEWS b/NEWS
index 0092584..9524549 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+0.8.2.1
+- Fix syntax checks to use local tree
+
0.8.2
- Add some tests checking the syntax of iurt/ulri/emi as the main scripts
are not covered by test.
diff --git a/iurt b/iurt
index ebcae64..0a6e309 100755
--- a/iurt
+++ b/iurt
@@ -324,7 +324,7 @@ plog_init($program_name, $run{logfd} || $LOG, 7, 1); # For parsing command line
# Display version information
#
-my $version = '0.8.2';
+my $version = '0.8.2.1';
plog("MSG", "This is iurt version $version");
my $todo = parseCommandLine($program_name, \@ARGV, \@params);