* Allow packages to enabled shared libraries on cygwin.

(ideally, this should be the other way around, but I have no idea how
many packages will break if we enable shared libraries by default)


svn path=/nixpkgs/trunk/; revision=5923
This commit is contained in:
Martin Bravenboer 2006-07-24 21:20:49 +00:00
parent 1e03169e84
commit 835f452e70

View file

@ -1,2 +1,5 @@
export NIX_ENFORCE_PURITY=
export configureFlags="$configureFlags --disable-shared"
if test -z "$cygwinConfigureEnableShared"; then
export configureFlags="$configureFlags --disable-shared"
fi