Skip to content

Commit

Permalink
- move --exclude-vcs in tar calls to the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhofen committed Oct 9, 2021
1 parent 6493b53 commit eaa95a4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion make/linux-kernel.mk
Expand Up @@ -222,7 +222,7 @@ kernel.do_prepare_git:
$(MAKE) kernel.do_checkout
#
$(REMOVE)/$(KERNEL_DIR)
tar -C $(SOURCE_DIR) -cp $(NI_LINUX_KERNEL) --exclude-vcs | tar -C $(BUILD_DIR) -x
tar -C $(SOURCE_DIR) --exclude-vcs -cp $(NI_LINUX_KERNEL) | tar -C $(BUILD_DIR) -x
$(CD) $(BUILD_DIR); \
mv $(NI_LINUX_KERNEL) $(KERNEL_DIR)

Expand Down
2 changes: 1 addition & 1 deletion make/target-ffmpeg-coolstream.mk
Expand Up @@ -169,7 +169,7 @@ ffmpeg: $(FFMPEG_DEPENDENCIES) | $(TARGET_DIR)
$(REMOVE)/$(NI_FFMPEG)
$(CD) $(SOURCE_DIR)/$(NI_FFMPEG); \
git checkout $(FFMPEG_BRANCH)
tar -C $(SOURCE_DIR) -cp $(NI_FFMPEG) --exclude-vcs | tar -C $(BUILD_DIR) -x
tar -C $(SOURCE_DIR) --exclude-vcs -cp $(NI_FFMPEG) | tar -C $(BUILD_DIR) -x
$(CHDIR)/$(NI_FFMPEG); \
./configure $($(PKG)_CONF_OPTS); \
$(MAKE); \
Expand Down
4 changes: 2 additions & 2 deletions make/target-libs.mk
Expand Up @@ -171,7 +171,7 @@ OPENTHREADS_CONF_OPTS = \

openthreads: $(SOURCE_DIR)/$(NI_OPENTHREADS) | $(TARGET_DIR)
$(REMOVE)/$(NI_OPENTHREADS)
tar -C $(SOURCE_DIR) -cp $(NI_OPENTHREADS) --exclude-vcs | tar -C $(BUILD_DIR) -x
tar -C $(SOURCE_DIR) --exclude-vcs -cp $(NI_OPENTHREADS) | tar -C $(BUILD_DIR) -x
$(CHDIR)/$(NI_OPENTHREADS)/; \
$(CMAKE); \
$(MAKE); \
Expand Down Expand Up @@ -351,7 +351,7 @@ RTMPDUMP_MAKE_OPTS = \

rtmpdump: $(RTMPDUMP_DEPENDENCIES) $(SOURCE_DIR)/$(NI_RTMPDUMP) | $(TARGET_DIR)
$(REMOVE)/$(NI_RTMPDUMP)
tar -C $(SOURCE_DIR) -cp $(NI_RTMPDUMP) --exclude-vcs | tar -C $(BUILD_DIR) -x
tar -C $(SOURCE_DIR) --exclude-vcs -cp $(NI_RTMPDUMP) | tar -C $(BUILD_DIR) -x
$(CHDIR)/$(NI_RTMPDUMP); \
$($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_MAKE_OPTS); \
$($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_MAKE_OPTS) install DESTDIR=$(TARGET_DIR)
Expand Down
4 changes: 2 additions & 2 deletions make/target-tools.mk
Expand Up @@ -953,7 +953,7 @@ STREAMRIPPER_CONF_OPTS = \

streamripper: $(STREAMRIPPER_DEPENDENCIES) | $(TARGET_DIR)
$(REMOVE)/$(NI_STREAMRIPPER)
tar -C $(SOURCE_DIR) -cp $(NI_STREAMRIPPER) --exclude-vcs | tar -C $(BUILD_DIR) -x
tar -C $(SOURCE_DIR) --exclude-vcs -cp $(NI_STREAMRIPPER) | tar -C $(BUILD_DIR) -x
$(CHDIR)/$(NI_STREAMRIPPER); \
$(CONFIGURE); \
$(MAKE); \
Expand Down Expand Up @@ -1001,7 +1001,7 @@ gettext: $(DL_DIR)/$(GETTEXT_SOURCE) | $(TARGET_DIR)

ofgwrite: $(SOURCE_DIR)/$(NI_OFGWRITE) | $(TARGET_DIR)
$(REMOVE)/$(NI_OFGWRITE)
tar -C $(SOURCE_DIR) -cp $(NI_OFGWRITE) --exclude-vcs | tar -C $(BUILD_DIR) -x
tar -C $(SOURCE_DIR) --exclude-vcs -cp $(NI_OFGWRITE) | tar -C $(BUILD_DIR) -x
$(CHDIR)/$(NI_OFGWRITE); \
$(TARGET_CONFIGURE_ENV) \
$(MAKE)
Expand Down

0 comments on commit eaa95a4

Please sign in to comment.