diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/host.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/host.mk b/include/host.mk index b4580e2b7a..6458881472 100644 --- a/include/host.mk +++ b/include/host.mk @@ -22,3 +22,7 @@ $(TOPDIR)/.host.mk: $(INCLUDE_DIR)/host.mk -e 's/cris.*/cris/' \ -e 's/i[3-9]86/i386/'`" >> $@ echo "GNU_HOST_NAME:=`$(HOSTCC) -dumpmachine`" >> $@ + if tar --version 2>&1 | grep 'GNU' >/dev/null; then \ + echo "TAR_OPTIONS+=--wildcards" >> $@; \ + fi + |