]> git.codecow.com Git - Monocypher.git/commitdiff
Removed tests/vectors.h target from the tarballed makefile
authorLoup Vaillant <loup@loup-vaillant.fr>
Mon, 21 Oct 2019 13:03:52 +0000 (15:03 +0200)
committerLoup Vaillant <loup@loup-vaillant.fr>
Mon, 21 Oct 2019 13:03:52 +0000 (15:03 +0200)
The tests/vectors.h file ships with the tarball, we don't need to make
it a target.

release.sh

index bcc55f8a38e12b617d0c56c71208747a4744aff0..8d9bfe79249bd6287bc17b8e65e45eecdae96719 100755 (executable)
@@ -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