diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-12-10 14:59:02 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-12-10 14:59:02 +0000 |
commit | ce90aae17c62b270d69b70811097d018907ff833 (patch) | |
tree | 61c545934fa7a206611e97bb0d2e998974c5e7df | |
parent | 955ed6aecadd50c5fd12ddcdc05750878d9d4792 (diff) | |
download | buildroot-novena-ce90aae17c62b270d69b70811097d018907ff833.tar.gz buildroot-novena-ce90aae17c62b270d69b70811097d018907ff833.zip |
- add option to pass to tar for unpacking the source.
Set it to exclude .svn per default (please default to "" if inappropriate)
-rw-r--r-- | Config.in | 4 | ||||
-rw-r--r-- | Makefile | 6 |
2 files changed, 8 insertions, 2 deletions
@@ -125,6 +125,10 @@ config BR2_TAR_VERBOSITY bool "Tar verbose" default n +config BR2_TAR_OPTIONS + string "Tar options" + default "--exclude='.svn'" + config BR2_DL_DIR string "Download dir" default "$(BASE_DIR)/dl" @@ -36,9 +36,11 @@ ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) endif ifeq ($(BR2_TAR_VERBOSITY),y) -TAR_OPTIONS=-xvf +TAR_OPTIONS=$(subst ",, $(BR2_TAR_OPTIONS)) -xvf +#" else -TAR_OPTIONS=-xf +TAR_OPTIONS=$(subst ",, $(BR2_TAR_OPTIONS)) -xf +#" endif ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y) |