* propagated-build-inputs should now be placed in $out/nix-support.
svn path=/nixpkgs/trunk/; revision=823
This commit is contained in:
@@ -1,13 +1,14 @@
|
||||
#! /bin/sh
|
||||
#! /bin/sh -e
|
||||
|
||||
buildinputs="$zlib"
|
||||
. $stdenv/setup || exit 1
|
||||
. $stdenv/setup
|
||||
|
||||
tar xvfz $src || exit 1
|
||||
cd libxml2-* || exit 1
|
||||
./configure --prefix=$out || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
||||
strip -S $out/lib/*.a || exit 1
|
||||
tar xvfz $src
|
||||
cd libxml2-*
|
||||
./configure --prefix=$out
|
||||
make
|
||||
make install
|
||||
strip -S $out/lib/*.a
|
||||
|
||||
echo "$zlib" > $out/propagated-build-inputs || exit 1
|
||||
mkdir $out/nix-support
|
||||
echo "$zlib" > $out/nix-support/propagated-build-inputs
|
||||
|
||||
Reference in New Issue
Block a user