* Strip debug information.

svn path=/nixpkgs/trunk/; revision=167
This commit is contained in:
Eelco Dolstra 2003-07-16 19:59:52 +00:00
parent efb907cf9d
commit d3a6ba4527
8 changed files with 8 additions and 8 deletions

View file

@ -4,6 +4,6 @@ export PATH=/bin:/usr/bin
tar xvfz $src || exit 1
cd aterm-* || exit 1
./configure --prefix=$out --with-gcc || exit 1
LDFLAGS=-s ./configure --prefix=$out --with-gcc || exit 1
make || exit 1
make install || exit 1

View file

@ -6,7 +6,7 @@ envpkgs=$glib
tar xvfj $src || exit 1
cd atk-* || exit 1
./configure --prefix=$out || exit 1
LDFLAGS=-s ./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
echo $envpkgs > $out/envpkgs || exit 1

View file

@ -4,6 +4,6 @@ export PATH=$pkgconfig/bin:/bin:/usr/bin
tar xvfj $src
cd glib-*
./configure --prefix=$out
LDFLAGS=-s ./configure --prefix=$out
make
make install

View file

@ -6,7 +6,7 @@ envpkgs=$glib
tar xvfz $src || exit 1
cd gnet-* || exit 1
./configure --prefix=$out || exit 1
LDFLAGS=-s ./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
echo $envpkgs > $out/envpkgs || exit 1

View file

@ -6,7 +6,7 @@ envpkgs="$glib $atk $pango"
tar xvfj $src || exit 1
cd gtk+-* || exit 1
./configure --prefix=$out --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib || exit 1
LDFLAGS=-s ./configure --prefix=$out --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib || exit 1
make || exit 1
make install || exit 1
echo $envpkgs > $out/envpkgs || exit 1

View file

@ -6,7 +6,7 @@ envpkgs="$glib $Xft"
tar xvfj $src || exit 1
cd pango-* || exit 1
./configure --prefix=$out --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib || exit 1
LDFLAGS=-s ./configure --prefix=$out --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib || exit 1
make || exit 1
make install || exit 1
echo $envpkgs > $out/envpkgs || exit 1

View file

@ -4,6 +4,6 @@ export PATH=/bin:/usr/bin
tar xvfz $src || exit 1
cd sdf2-* || exit 1
./configure --prefix=$out --with-aterm=$aterm || exit 1
LDFLAGS=-s ./configure --prefix=$out --with-aterm=$aterm || exit 1
make || exit 1
make install || exit 1

View file

@ -4,6 +4,6 @@ export PATH=/bin:/usr/bin
tar xvfz $src || exit 1
cd strategoxt-* || exit 1
./configure --prefix=$out --with-aterm=$aterm --with-sdf=$sdf2 || exit 1
LDFLAGS=-s ./configure --prefix=$out --with-aterm=$aterm --with-sdf=$sdf2 || exit 1
make || exit 1
make install || exit 1