From 474441befd2ccd62b12f02687b76887f4fd73305 Mon Sep 17 00:00:00 2001 From: Stas Sergeev Date: Sun, 26 Jan 2025 14:22:41 +0300 Subject: [PATCH] remove configure.meson again It relies on dj64-gcc which is no longer available. See https://github.com/dosemu2/dosemu2/discussions/2360 --- configure.meson | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 configure.meson diff --git a/configure.meson b/configure.meson deleted file mode 100755 index b0bf884..0000000 --- a/configure.meson +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash - -if [ -z "$1" ] ; then - BLD="build" - BLDH="build" -else - BLDH=${!#} -fi - -TOP=$(dirname "$0") - -meson setup \ - --cross-file $TOP/src/toolchain.ini \ - $* $BLD $TOP -[ "$?" = "0" ] || exit 1 - -echo -echo "Done configure" -echo "Now run \"meson compile --verbose -C $BLDH\" to build" -echo "After that you can do \"meson install -C $BLDH\" to install"