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