Merge pull request #116662 from AndersonTorres/new-xa
Fix typos in xa and dxa
This commit is contained in:
commit
3a71e9c256
@ -18,9 +18,8 @@ stdenv.mkDerivation rec {
|
|||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace \
|
substituteInPlace Makefile \
|
||||||
--replace "CC = gcc" "CC = cc' \
|
--replace "CC = gcc" "CC = ${stdenv.cc.targetPrefix}cc"
|
||||||
Makefile
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
@ -15,13 +15,12 @@ stdenv.mkDerivation rec {
|
|||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substitueInPlace \
|
substituteInPlace Makefile \
|
||||||
--replace "DESTDIR" "PREFIX" \
|
--replace "DESTDIR" "PREFIX" \
|
||||||
--replace "CC = gcc" "CC = cc" \
|
--replace "CC = gcc" "CC = ${stdenv.cc.targetPrefix}cc" \
|
||||||
--replace "LDD = gcc" "LDD = ld" \
|
--replace "LDD = gcc" "LDD = ${stdenv.cc.targetPrefix}cc" \
|
||||||
--replace "CFLAGS = -O2" "CFLAGS ?=" \
|
--replace "CFLAGS = -O2" "CFLAGS ?=" \
|
||||||
--replace "LDFLAGS = -lc" "LDFLAGS ?= -lc" \
|
--replace "LDFLAGS = -lc" "LDFLAGS ?= -lc"
|
||||||
Makefile
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user