mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-07-24 10:25:42 -04:00
tools/release: don't double-quote $MAKE
We actually want it broken down into words... (e.g. make -jX). Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
ab8c1d2ee5
commit
5f46eea191
@ -45,9 +45,9 @@ MAKE="${MAKE:-make}"
|
|||||||
cd nasm
|
cd nasm
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
./configure --prefix=/usr/local
|
./configure --prefix=/usr/local
|
||||||
"$MAKE" perlreq spec manpages
|
$MAKE perlreq spec manpages
|
||||||
"$MAKE" alldeps
|
$MAKE alldeps
|
||||||
"$MAKE" distclean
|
$MAKE distclean
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
# Clean up any previous attempt
|
# Clean up any previous attempt
|
||||||
@ -78,9 +78,9 @@ find nasm-"$version" -not -type d -print > main
|
|||||||
# Create documentation
|
# Create documentation
|
||||||
cd nasm-"$version"
|
cd nasm-"$version"
|
||||||
./configure --prefix=/usr/local
|
./configure --prefix=/usr/local
|
||||||
"$MAKE" doc
|
$MAKE doc
|
||||||
# Remove intermediate files.
|
# Remove intermediate files.
|
||||||
"$MAKE" cleaner
|
$MAKE cleaner
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
# Remove non-documentation
|
# Remove non-documentation
|
||||||
|
Loading…
x
Reference in New Issue
Block a user