소스 검색

Patch from scott: http://bugs.uclibc.org/view.php?id=42

0000042: add subversion (svn) support to buildroot

This patch adds support for subversion to checkout files, much like how CVS
already works. It uses 'SVN' macro in makefiles.
Eric Andersen 20 년 전
부모
커밋
e30cf26cff
2개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      Config.in
  2. 4 0
      package/Makefile.in

+ 4 - 0
Config.in

@@ -76,6 +76,10 @@ config BR2_WGET
 	string "Wget command"
 	default "wget --passive-ftp -nd"
 
+config BR2_SVN
+        string
+        default "Subversion (svn) checkout command"
+
 config BR2_TAR_VERBOSITY
 	bool "Tar verbose"
 	default n

+ 4 - 0
package/Makefile.in

@@ -6,6 +6,10 @@ ARCH:=$(strip $(subst ",, $(BR2_ARCH)))
 #"
 WGET:=$(strip $(subst ",, $(BR2_WGET)))
 #"
+SVN:=$(strip $(subst ",, $(BR2_SVN)))
+#"
+
+
 
 ifneq ($(BR2_LARGEFILE),y)
 DISABLE_LARGEFILE= --disable-largefile