forked from mirrors/nixpkgs
* Handle weird cases when the server redirects us while setting a
cookie. svn path=/nixpkgs/trunk/; revision=7352
This commit is contained in:
parent
b83fc581e2
commit
f59f5d7d96
|
@ -13,4 +13,8 @@
|
||||||
seem to like Glibc `libintl.h'; needs the gettext one instead.
|
seem to like Glibc `libintl.h'; needs the gettext one instead.
|
||||||
[Move from libbonoboui]
|
[Move from libbonoboui]
|
||||||
|
|
||||||
* Fix the bzip2 build generically.
|
* Fix the bzip2 build generically.
|
||||||
|
|
||||||
|
* In stdenv/setup.sh: put the call to patchelf etc. in a separate
|
||||||
|
phase (fixupPhase?) that comes after the installPhase. This is so
|
||||||
|
that when one overrides installPhase, the fixup stuff is still done.
|
||||||
|
|
|
@ -2,7 +2,8 @@ source $stdenv/setup
|
||||||
|
|
||||||
header "downloading $out from $url"
|
header "downloading $out from $url"
|
||||||
|
|
||||||
curl --fail --location --max-redirs 20 --disable-epsv "$url" > "$out"
|
curl --fail --location --max-redirs 20 --disable-epsv \
|
||||||
|
--cookie-jar cookies "$url" > "$out"
|
||||||
|
|
||||||
if test "$NIX_OUTPUT_CHECKED" != "1"; then
|
if test "$NIX_OUTPUT_CHECKED" != "1"; then
|
||||||
if test "$outputHashAlgo" != "md5"; then
|
if test "$outputHashAlgo" != "md5"; then
|
||||||
|
|
Loading…
Reference in a new issue