diff --git a/gcc/cobol/nist/.gitignore b/gcc/cobol/nist/.gitignore index 0ad31e26137f574c22f5aa890193b6250ee70a44..450c02914f9dffdd00b2d66782d270724a003376 100644 --- a/gcc/cobol/nist/.gitignore +++ b/gcc/cobol/nist/.gitignore @@ -3,6 +3,7 @@ dat/ obj/ playground/ newcob.val +newcob.val.Z PRINT-FILE REPORTT EXEC85 diff --git a/gcc/cobol/nist/Makefile b/gcc/cobol/nist/Makefile index 751364fcf8d5958a8f12e7c0217d5ddfb7f6cafb..a91c79eb8e0ec1dcce3f8b11fcf2741e2ab71f8c 100644 --- a/gcc/cobol/nist/Makefile +++ b/gcc/cobol/nist/Makefile @@ -472,13 +472,13 @@ newcob.val: newcob.val.Z cp .$^ $^ touch -r $@ $^ -### As of 2024-04-24, newcob.val.Z seems to be unfindable at nist.gov I have -### added a copy to the git repository. #URL = http://www.itl.nist.gov/div897/ctg/suites/newcob.val.Z -#newcob.val.Z: -## The file from NIST doesn't exist, so we need to download it. +URL = http://www.cobolworx.com/newcob.val.Z +newcob.val.Z: +# The file from NIST doesn't exist, so we need to download it. # wget -O $@~ $(URL) || cp -v $(HOME)/$@ $@~ -# @mv $@~ $@ + wget --no-check-certificate -O $@~ $(URL) || cp -v $(HOME)/$@ $@~ + @mv $@~ $@ # diff --git a/gcc/cobol/nist/newcob.val.Z b/gcc/cobol/nist/newcob.val.Z deleted file mode 100644 index 83cec83f5f2b74d84be14facd381846b1bdc959a..0000000000000000000000000000000000000000 Binary files a/gcc/cobol/nist/newcob.val.Z and /dev/null differ