From 6bd4ab3695499eb24c57f339c95f53cc0c71d373 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 23 Oct 2024 14:43:40 +0200 Subject: [PATCH] [Objconv] rebuild with FreeBSD aarch64 support (#9668) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [Objconv] rebuild with FreeBSD aarch64 support * Update build_tarballs.jl --------- Co-authored-by: Mosè Giordano <765740+giordano@users.noreply.github.com> --- O/Objconv/build_tarballs.jl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/O/Objconv/build_tarballs.jl b/O/Objconv/build_tarballs.jl index 2dd7536bb62..e34efe196f3 100644 --- a/O/Objconv/build_tarballs.jl +++ b/O/Objconv/build_tarballs.jl @@ -15,15 +15,15 @@ sources = [ script = raw""" cd $WORKSPACE/srcdir/objconv*/ -mkdir -p ${prefix}/bin -${CXX} ${CPPFLAGS} ${CXXFLAGS} ${LDFLAGS} -O2 -o ${prefix}/bin/objconv${exeext} src/*.cpp +mkdir -p "${bindir}" +${CXX} ${CPPFLAGS} ${CXXFLAGS} ${LDFLAGS} -O2 -o "${bindir}/objconv${exeext}" src/*.cpp install_license /usr/share/licenses/GPL-3.0+ """ # These are the platforms we will build for by default, unless further # platforms are passed in on the command line -platforms = supported_platforms(;experimental=true) +platforms = supported_platforms() # The products that we will ensure are always built products = [ @@ -31,7 +31,7 @@ products = [ ] # Dependencies that must be installed before this package can be built -dependencies = [ +dependencies = Dependency[ ] # Build the tarballs, and possibly a `build.jl` as well.