5a00ba432c
("/usr/bin/ld: can't use -s with -r (resulting file would not be relocatable)"). * Since stdenv/generic had to be modified for this, I forked it in situ. This should be merged later. svn path=/nixpkgs/trunk/; revision=1121
22 lines
412 B
Bash
22 lines
412 B
Bash
p1=$param1
|
|
p2=$param2
|
|
p3=$param3
|
|
p4=$param4
|
|
p5=$param5
|
|
|
|
. $stdenv/setup
|
|
|
|
mkdir $out || exit 1
|
|
|
|
sed \
|
|
-e "s^@preHook@^$preHook^g" \
|
|
-e "s^@postHook@^$postHook^g" \
|
|
-e "s^@initialPath@^$initialPath^g" \
|
|
-e "s^@gcc@^$gcc^g" \
|
|
-e "s^@shell@^$shell^g" \
|
|
-e "s^@param1@^$p1^g" \
|
|
-e "s^@param2@^$p2^g" \
|
|
-e "s^@param3@^$p3^g" \
|
|
-e "s^@param4@^$p4^g" \
|
|
-e "s^@param5@^$p5^g" \
|
|
< $setup > $out/setup || exit 1
|