From c9ef8a6484ec0795f8118aa7ee74f04726cde8ac Mon Sep 17 00:00:00 2001 From: belliash Date: Sun, 26 Mar 2023 13:19:09 +0200 Subject: [PATCH] Get rid of NASM --- build-linux.sh | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/build-linux.sh b/build-linux.sh index 7c90287..c319156 100755 --- a/build-linux.sh +++ b/build-linux.sh @@ -454,31 +454,6 @@ nasm_build() cd ${WRKDIR} } -# This function downloads NASM from VCS -nasm_fetch() -{ - if [ ! -d ${NASMDIR} ]; then - echo ">>> Downloading NASM ..." - git clone ${NASMVCS} ${NASMDIR} - cd ${NASMDIR} - git checkout tags/${NASMTAG} - apply_patches ${NASMDIR##*/} ${NASMTAG##*-} - cd ${WRKDIR} - fi -} - -# This function compiles and installs NINJA -ninja_build() -{ - echo ">>> Building NINJA ..." - [ -z ${CLEAN} ] || rm -rf ${NINJADIR}/build-${GENERIC} - mkdir -p ${NINJADIR}/build-${GENERIC} - cd ${NINJADIR}/build-${GENERIC} - ../configure.py --bootstrap - install ninja ${BINDIR}/bin/ - cd ${WRKDIR} -} - # This function downloads NINJA from VCS ninja_fetch() {