mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
expect: remove hack for aarch64 build
Not sure if I missed something or the issue got fixed later, but it's not needed anymore to pass a `--build` flag to the configure script on aarch64. The autoreconfHooks are still needed for expect and bzip2.
This commit is contained in:
parent
8e7bbb7d4f
commit
9646fafc5d
1 changed files with 1 additions and 6 deletions
|
@ -22,12 +22,7 @@ stdenv.mkDerivation rec {
|
|||
"--with-tcl=${tcl}/lib"
|
||||
"--with-tclinclude=${tcl}/include"
|
||||
"--exec-prefix=\${out}"
|
||||
] ++ (stdenv.lib.optionals stdenv.isAarch64 [
|
||||
# FIXME(ma27) not entirely sure why this breaks now,
|
||||
# we should at least find the cause before merging the glibc 2.30
|
||||
# update.
|
||||
"--build=aarch64-unknown-linux-gnu"
|
||||
]);
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
for i in $out/bin/*; do
|
||||
|
|
Loading…
Reference in a new issue