lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26012 from Ericson2314/gdb-fix

gdb: s/target/tagetPlatform

authored by

John Ericson and committed by
GitHub
8a423c3a 51930ce4

+1 -1
+1 -1
pkgs/development/tools/misc/gdb/default.nix
··· 54 54 "--with-separate-debug-dir=/run/current-system/sw/lib/debug" 55 55 ++ stdenv.lib.optional (!pythonSupport) "--without-python" 56 56 # TODO(@Ericson2314): This should be done in stdenv, not per-package 57 - ++ stdenv.lib.optional (targetPlatform != hostPlatform) "--target=${target.config}" 57 + ++ stdenv.lib.optional (targetPlatform != hostPlatform) "--target=${targetPlatform.config}" 58 58 ++ stdenv.lib.optional multitarget "--enable-targets=all"; 59 59 60 60 postInstall =