summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-04 15:49:17 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-04 15:53:02 -0400
commit6a089581f89f9da656e63f234d1a099838f4898f (patch)
tree019bc8aa180b892ab3924c507eeace9e0366ed0a /pkgs/development/compilers
parent22b79aecc662b60ad39b272be1ec9254134ad5b8 (diff)
downloadnixpkgs-6a089581f89f9da656e63f234d1a099838f4898f.tar
nixpkgs-6a089581f89f9da656e63f234d1a099838f4898f.tar.gz
nixpkgs-6a089581f89f9da656e63f234d1a099838f4898f.tar.bz2
nixpkgs-6a089581f89f9da656e63f234d1a099838f4898f.tar.lz
nixpkgs-6a089581f89f9da656e63f234d1a099838f4898f.tar.xz
nixpkgs-6a089581f89f9da656e63f234d1a099838f4898f.tar.zst
nixpkgs-6a089581f89f9da656e63f234d1a099838f4898f.zip
gcc-4.5: Fix typo
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/gcc/4.5/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/gcc/4.5/default.nix b/pkgs/development/compilers/gcc/4.5/default.nix
index dc62d1fbd52..bec2aab017e 100644
--- a/pkgs/development/compilers/gcc/4.5/default.nix
+++ b/pkgs/development/compilers/gcc/4.5/default.nix
@@ -65,7 +65,7 @@ let version = "4.5.4";
 
     /* Cross-gcc settings */
     gccArch = stdenv.lib.attrByPath [ "gcc" "arch" ] null targetPlatform;
-    gccCpu = stdenv.lib.attrByPath [ "gcc" "cpu" ] null targetPlatformt;
+    gccCpu = stdenv.lib.attrByPath [ "gcc" "cpu" ] null targetPlatform;
     gccAbi = stdenv.lib.attrByPath [ "gcc" "abi" ] null targetPlatform;
     withArch = if gccArch != null then " --with-arch=${gccArch}" else "";
     withCpu = if gccCpu != null then " --with-cpu=${gccCpu}" else "";