From dd2f1dece0e9d65d83df8ff35660faf7223bbf9a Mon Sep 17 00:00:00 2001 From: "Tom G. Christensen" Date: Sun, 24 Feb 2013 21:56:07 +0100 Subject: [PATCH] buildpkg.functions: tell to curl use remote timestamp when downloading files --- buildpkg.functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildpkg.functions b/buildpkg.functions index 427e758..35a669e 100644 --- a/buildpkg.functions +++ b/buildpkg.functions @@ -364,7 +364,7 @@ fetch_source() if [ ! -r "$path/$file" ]; then echo "fetch_source: Downloading $url" if [ -x ${__curl} ]; then - ${__curl} -# -L --retry 2 -C - -o $srcfiles/$file "$url" + ${__curl} -R -# -L --retry 2 -C - -o $srcfiles/$file "$url" else error $E_MISSING_EXE fetch_source fi