summaryrefslogtreecommitdiff
path: root/guix/build
diff options
context:
space:
mode:
Diffstat (limited to 'guix/build')
-rw-r--r--guix/build/svn.scm4
1 files changed, 0 insertions, 4 deletions
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)