23154d034f
* Remove all references to set-env.sh; it has been merged into stdenv.fix (actually baseenv.fix). svn path=/nixpkgs/trunk/; revision=316
19 lines
239 B
Bash
Executable file
19 lines
239 B
Bash
Executable file
#! /bin/sh
|
|
|
|
. $stdenv/setup || exit 1
|
|
|
|
echo "out: $out"
|
|
echo "pwd: `pwd`"
|
|
echo "src: $src"
|
|
ls $src
|
|
|
|
cp -r $src autoxt
|
|
ls
|
|
|
|
cd autoxt || exit 1
|
|
./bootstrap || exit 1
|
|
./configure --prefix=$out || exit 1
|
|
make || exit 1
|
|
make install || exit 1
|
|
|