mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
* Check for failure.
svn path=/nixpkgs/trunk/; revision=175
This commit is contained in:
parent
e06e1890f4
commit
a119076f9e
@ -2,8 +2,8 @@
|
||||
|
||||
export PATH=$pkgconfig/bin:/bin:/usr/bin
|
||||
|
||||
tar xvfj $src
|
||||
cd glib-*
|
||||
LDFLAGS=-s ./configure --prefix=$out
|
||||
make
|
||||
make install
|
||||
tar xvfj $src || exit 1
|
||||
cd glib-* || exit 1
|
||||
LDFLAGS=-s ./configure --prefix=$out || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
||||
|
Loading…
Reference in New Issue
Block a user