summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2020-05-20 14:06:32 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2020-05-20 14:06:32 (GMT)
commitaf1cd63111adce03f81e2e497890080ef1f51113 (patch)
tree3ffbc58ec81984890ca309cf069543ac75660961
parent80d35d2ef9feb42cfe480188c339d816237e6376 (diff)
downloadhdf5-af1cd63111adce03f81e2e497890080ef1f51113.zip
hdf5-af1cd63111adce03f81e2e497890080ef1f51113.tar.gz
hdf5-af1cd63111adce03f81e2e497890080ef1f51113.tar.bz2
Update MANIFEST for removal of older warnings files.
Fix max_index in make_vers - must equal current version.
-rw-r--r--MANIFEST20
-rwxr-xr-xbin/make_vers4
2 files changed, 3 insertions, 21 deletions
diff --git a/MANIFEST b/MANIFEST
index e600d47..d68d67a 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -149,16 +149,7 @@
./config/clang-warnings/error-general
./config/clang-warnings/general
./config/clang-warnings/no-developer-general
-./config/gnu-warnings/4.2-4.3
-./config/gnu-warnings/4.2-4.4
-./config/gnu-warnings/4.2-4.6
-./config/gnu-warnings/4.2-4.last
-./config/gnu-warnings/4.3
-./config/gnu-warnings/4.4
-./config/gnu-warnings/4.5
-./config/gnu-warnings/4.5-4.6
-./config/gnu-warnings/4.6
-./config/gnu-warnings/4.7
+./config/gnu-warnings/4.8-4.last
./config/gnu-warnings/4.8
./config/gnu-warnings/4.9
./config/gnu-warnings/5
@@ -171,9 +162,6 @@
./config/gnu-warnings/cxx-5
./config/gnu-warnings/cxx-error-5
./config/gnu-warnings/cxx-error-general
-./config/gnu-warnings/developer-4.5
-./config/gnu-warnings/developer-4.6
-./config/gnu-warnings/developer-4.7
./config/gnu-warnings/developer-4.8
./config/gnu-warnings/developer-7
./config/gnu-warnings/developer-8
@@ -183,16 +171,10 @@
./config/gnu-warnings/error-general
./config/gnu-warnings/general
./config/gnu-warnings/gfort-general
-./config/gnu-warnings/gfort-4.4
-./config/gnu-warnings/gfort-4.5
-./config/gnu-warnings/gfort-4.7
./config/gnu-warnings/gfort-4.8
./config/gnu-warnings/gfort-5
./config/gnu-warnings/gfort-6
./config/gnu-warnings/gfort-8
-./config/gnu-warnings/no-developer-4.5
-./config/gnu-warnings/no-developer-4.6
-./config/gnu-warnings/no-developer-4.7
./config/gnu-warnings/no-developer-4.8
./config/gnu-warnings/no-developer-8
./config/gnu-warnings/no-developer-general
diff --git a/bin/make_vers b/bin/make_vers
index d2dca4e..478e1df 100755
--- a/bin/make_vers
+++ b/bin/make_vers
@@ -8,8 +8,8 @@ use warnings;
# is added (like support for 1.4, etc), the min_sup_idx parameter will
# need to be decremented. - QAK)
-# Max. library "index" (0 = v1.0, 1 = 1.2, 2 = 1.4, 3 = 1.6, 4 = 1.8, 5 = 1.10, 6 = 1.12, etc)
-$max_idx = 6;
+# Max. library "index" (0 = v1.0, 1 = 1.2, 2 = 1.4, 3 = 1.6, 4 = 1.8, 5 = 1.10, etc)
+$max_idx = 5;
# Min. supported previous library version "index" (0 = v1.0, 1 = 1.2, etc)
$min_sup_idx = 3;