Unverified Commit 80c49d8c authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

octave: Do not --enable-link-all-dependencies on Darwin (#368376)

parents 3fe57fe3 9e3db9e5
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -183,7 +183,6 @@ stdenv.mkDerivation (finalAttrs: {
      "--with-lapack=lapack"
      (if use64BitIdx then "--enable-64" else "--disable-64")
    ]
    ++ lib.optionals stdenv.hostPlatform.isDarwin [ "--enable-link-all-dependencies" ]
    ++ lib.optionals enableReadline [ "--enable-readline" ]
    ++ lib.optionals stdenv.hostPlatform.isDarwin [ "--with-x=no" ]
    ++ lib.optionals enableQt [ "--with-qt=5" ];