forked from mirrors/nixpkgs
mktemp: fix w/cross
This commit is contained in:
parent
e02f427b4a
commit
3785e0ac7e
|
@ -6,6 +6,11 @@ stdenv.mkDerivation {
|
|||
# Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
|
||||
NROFF = "${groff}/bin/nroff";
|
||||
|
||||
# Don't use "install -s"
|
||||
postPatch = ''
|
||||
substituteInPlace Makefile.in --replace " 0555 -s " " 0555 "
|
||||
'';
|
||||
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.mktemp.org/pub/mktemp/mktemp-1.7.tar.gz;
|
||||
sha256 = "0x969152znxxjbj7387xb38waslr4yv6bnj5jmhb4rpqxphvk54f";
|
||||
|
|
Loading…
Reference in a new issue