Unverified Commit 72b7e549 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

buildMozillaMach: fix pgo configure flags

This broke when support for opt-in __structuredAttrs was added in
238a6053.

Fixes: #283563
parent ceb8e4ef
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -320,11 +320,9 @@ buildStdenv.mkDerivation {
          unset 'configureFlagsArray[i]'
        fi
      done
      configureFlagsArray+=(
        "--enable-profile-use=cross"
        "--with-pgo-profile-path="$TMPDIR/merged.profdata""
        "--with-pgo-jarlog="$TMPDIR/jarlog""
      )
      appendToVar configureFlags --enable-profile-use=cross
      appendToVar configureFlags --with-pgo-profile-path=$TMPDIR/merged.profdata
      appendToVar configureFlags --with-pgo-jarlog=$TMPDIR/jarlog
      ${lib.optionalString stdenv.hostPlatform.isMusl ''
        LDFLAGS="$OLD_LDFLAGS"
        unset OLD_LDFLAGS