[nasm:nasm-2.16.xx] tools/release: run autoconf/clean.sh if it exists

nasm-bot for H. Peter Anvin hpa at zytor.com
Thu Apr 4 13:54:05 PDT 2024


Commit-ID:  5a03edfdd9aaa33d34e5189c320ec2563dcf6a14
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=5a03edfdd9aaa33d34e5189c320ec2563dcf6a14
Author:     H. Peter Anvin <hpa at zytor.com>
AuthorDate: Thu, 4 Apr 2024 13:50:50 -0700
Committer:  H. Peter Anvin <hpa at zytor.com>
CommitDate: Thu, 4 Apr 2024 13:50:50 -0700

tools/release: run autoconf/clean.sh if it exists

If autoconf/clean.sh exists, run it after "make distclean" as a
redundancy measure.

Signed-off-by: H. Peter Anvin <hpa at zytor.com>


---
 tools/release | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tools/release b/tools/release
index c88cc36d..eb88cdea 100755
--- a/tools/release
+++ b/tools/release
@@ -48,6 +48,9 @@ cd nasm
 $makej perlreq spec manpages
 $makej alldeps
 $makej distclean
+if [ -f ./autoconf/clean.sh ]; then
+    sh ./autoconf/clean.sh
+fi
 cd ..
 
 # Clean up any previous attempt


More information about the Nasm-commits mailing list