diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-10-24 00:57:23 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-10-24 01:08:23 +0200 |
commit | 8a2b23178274127dac07e1163267d623790ce36a (patch) | |
tree | e785ee309960d9203efd4ef10528ad7c35800036 /guix/build | |
parent | f98be942e314d9add540a71b987fc5510d1981e1 (diff) |
Revert "guix: svn: Allow dropping externals."
This reverts commit 51395c84fdbf8daed6392951a973ad750cf3eefa,
fixing <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=37896>.
Reported by <o.rojon@posteo.net>.
Diffstat (limited to 'guix/build')
-rw-r--r-- | guix/build/svn.scm | 4 |
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) |