From af5fa5f1ce331d378f21e5b2a773230d78d109ae Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Mon, 21 Oct 2019 15:03:52 +0200 Subject: [PATCH] Removed tests/vectors.h target from the tarballed makefile The tests/vectors.h file ships with the tarball, we don't need to make it a target. --- release.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/release.sh b/release.sh index bcc55f8..8d9bfe7 100755 --- a/release.sh +++ b/release.sh @@ -28,8 +28,9 @@ do sed -i "s/__git__/$VERSION/g" $file done -# Remove the dist target from the makefile (no recursive releases!) -sed '/dist:/,$d' makefile > $FOLDER/makefile +# Remove the dist target from the makefile (no recursive releases!), +# and the tests/vector.h target, which ships with the tarball. +sed '/tests\/vectors.h:/,$d' makefile > $FOLDER/makefile # Remove contributor notes from the README sed '/Contributor notes/,$d' README.md > $FOLDER/README.md -- 2.47.3