From 8a2b23178274127dac07e1163267d623790ce36a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 24 Oct 2019 00:57:23 +0200 Subject: Revert "guix: svn: Allow dropping externals." This reverts commit 51395c84fdbf8daed6392951a973ad750cf3eefa, fixing . Reported by . --- guix/build/svn.scm | 4 ---- 1 file changed, 4 deletions(-) (limited to 'guix/build') diff --git a/guix/build/svn.scm b/guix/build/svn.scm index 33783f3056..e3188add3e 100644 --- a/guix/build/svn.scm +++ b/guix/build/svn.scm @@ -31,7 +31,6 @@ (define* (svn-fetch url revision directory #:key (svn-command "svn") - (recursive? #t) (user-name #f) (password #f)) "Fetch REVISION from URL into DIRECTORY. REVISION must be an integer, and a @@ -46,9 +45,6 @@ valid Subversion revision. Return #t on success, #f otherwise." (list (string-append "--username=" user-name) (string-append "--password=" password)) '()) - ,@(if recursive? - '() - (list "--ignore-externals")) ,url ,directory)) #t) -- cgit v1.2.3