summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2004-03-11 17:26:14 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2004-03-11 17:26:14 +0000
commitde13527000165c566e47d2146a1a6480fc67da59 (patch)
tree12f84ad99f15678dde1c6282ed78db37e776914a /pkgs/tools/text
parenta1b3ae0c8121b932beeceb46bef816bdb2a9f180 (diff)
downloadnixlib-de13527000165c566e47d2146a1a6480fc67da59.tar
nixlib-de13527000165c566e47d2146a1a6480fc67da59.tar.gz
nixlib-de13527000165c566e47d2146a1a6480fc67da59.tar.bz2
nixlib-de13527000165c566e47d2146a1a6480fc67da59.tar.lz
nixlib-de13527000165c566e47d2146a1a6480fc67da59.tar.xz
nixlib-de13527000165c566e47d2146a1a6480fc67da59.tar.zst
nixlib-de13527000165c566e47d2146a1a6480fc67da59.zip
* Finally got stdenv-nix-linux working again. Still not perfect,
  though.
* libxml2: upgrade to latest.
* octavefront/rna: keep debug info.

svn path=/nixpkgs/trunk/; revision=830
Diffstat (limited to 'pkgs/tools/text')
-rwxr-xr-xpkgs/tools/text/gnugrep/builder.sh18
1 files changed, 11 insertions, 7 deletions
diff --git a/pkgs/tools/text/gnugrep/builder.sh b/pkgs/tools/text/gnugrep/builder.sh
index 3453b5b0cb87..cb2c91a6b078 100755
--- a/pkgs/tools/text/gnugrep/builder.sh
+++ b/pkgs/tools/text/gnugrep/builder.sh
@@ -1,10 +1,14 @@
-#! /bin/sh
+#! /bin/sh -e
 
+set -x
+export NIX_DEBUG=1
 buildinputs="$pcre"
-. $stdenv/setup || exit 1
+. $stdenv/setup
 
-tar xvfj $src || exit 1
-cd grep-* || exit 1
-./configure --prefix=$out || exit 1
-make || exit 1
-make install || exit 1
+echo $NIX_LDFLAGS
+
+tar xvfj $src
+cd grep-*
+./configure --prefix=$out
+make
+make install