a7e18d28f5
svn path=/nixpkgs/trunk/; revision=207
25 lines
452 B
Bash
Executable file
25 lines
452 B
Bash
Executable file
#! /bin/sh
|
|
|
|
export PATH=/bin:/usr/bin
|
|
|
|
mkdir $out || exit 1
|
|
mkdir $out/bin || exit 1
|
|
|
|
echo "export PATH=$out/bin:/bin:/usr/bin" >> $out/setup || exit 1
|
|
|
|
gcc=/usr/bin/gcc
|
|
|
|
sed \
|
|
-e s^@GCC\@^$gcc^g \
|
|
-e s^@LIBC\@^$glibc^g \
|
|
< $gccwrapper > $out/bin/gcc || exit 1
|
|
chmod +x $out/bin/gcc || exit 1
|
|
|
|
gplusplus=/usr/bin/g++
|
|
|
|
sed \
|
|
-e s^@GCC\@^$gplusplus^g \
|
|
-e s^@LIBC\@^$glibc^g \
|
|
< $gccwrapper > $out/bin/g++ || exit 1
|
|
chmod +x $out/bin/g++ || exit 1
|