svn commit: trunk/buildroot

aldot at uclibc.org aldot at uclibc.org
Sat Dec 10 15:36:53 UTC 2005


Author: aldot
Date: 2005-12-10 07:36:43 -0800 (Sat, 10 Dec 2005)
New Revision: 12813

Log:
- remove BR2_TAR_VERBOSITY and add helptext to BR2_TAR_OPTIONS.
  default to no additional tar options.


Modified:
   trunk/buildroot/Config.in
   trunk/buildroot/Makefile


Changeset:
Modified: trunk/buildroot/Config.in
===================================================================
--- trunk/buildroot/Config.in	2005-12-10 15:10:57 UTC (rev 12812)
+++ trunk/buildroot/Config.in	2005-12-10 15:36:43 UTC (rev 12813)
@@ -121,13 +121,13 @@
 	string "Subversion (svn) checkout command"
 	default "svn co"
 
-config BR2_TAR_VERBOSITY
-	bool "Tar verbose"
-	default n
-
 config BR2_TAR_OPTIONS
 	string "Tar options"
-	default "--exclude='.svn'"
+	default ""
+	help
+	  Options to pass to tar when extracting the sources.
+	  E.g. " -v --exclude='*.svn*'" to exclude all .svn internal files
+	  and to be verbose.
 
 config BR2_DL_DIR
 	string "Download dir"

Modified: trunk/buildroot/Makefile
===================================================================
--- trunk/buildroot/Makefile	2005-12-10 15:10:57 UTC (rev 12812)
+++ trunk/buildroot/Makefile	2005-12-10 15:36:43 UTC (rev 12813)
@@ -35,13 +35,8 @@
 -include $(TOPDIR).config
 endif
 
-ifeq ($(BR2_TAR_VERBOSITY),y)
-TAR_OPTIONS=$(subst ",, $(BR2_TAR_OPTIONS)) -xvf
-#"
-else
 TAR_OPTIONS=$(subst ",, $(BR2_TAR_OPTIONS)) -xf
 #"
-endif
 
 ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
 




More information about the uClibc-cvs mailing list