~ salmonella-environment-setup (master) 5c3e11e4c3415ba40e2d90062370c958b923b4ca


commit 5c3e11e4c3415ba40e2d90062370c958b923b4ca
Author:     Mario Domenech Goulart <mario.goulart@gmail.com>
AuthorDate: Tue Mar 11 20:04:21 2014 -0300
Commit:     Mario Domenech Goulart <mario.goulart@gmail.com>
CommitDate: Tue Mar 11 20:08:01 2014 -0300

    Configure discount using --shared
    
    Thanks to Christian Kellermann for pointing that out.
    
    The sed line had a bug: it didn't actually write the Makefile

diff --git a/debian-wheezy.sh b/debian-wheezy.sh
index 9e3b05e..a1c4c16 100755
--- a/debian-wheezy.sh
+++ b/debian-wheezy.sh
@@ -115,8 +115,7 @@ cd $tmpdir
 wget http://www.pell.portland.or.us/~orc/Code/discount/discount-2.1.5a.tar.bz2
 tar xjvf discount-2.1.5a.tar.bz2
 cd discount-2.1.5a
-sed -e 's/CFLAGS=-g/CFLAGS=-g -fPIC/' Makefile.in
-./configure.sh --prefix=/usr/local
+./configure.sh --shared --prefix=/usr/local
 make
 sudo make install
 
Trap