[dahdi-commits] sruffell: linux/trunk r9434 - /linux/trunk/drivers/dahdi/firmware/Makefile
SVN commits to the DAHDI project
dahdi-commits at lists.digium.com
Wed Oct 20 07:22:46 CDT 2010
Author: sruffell
Date: Wed Oct 20 07:22:42 2010
New Revision: 9434
URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=9434
Log:
dahdi: '-o' -> '--no-same-owner' in drivers/dahdi/firmware/Makefile
It appears that in Centos 4, the version of tar doesn't like the -o
flag, but will honor the --no-same-owner flag.
(closes issue #16063)
Reported by: tzafrir
Signed-off-by: Shaun Ruffell <sruffell at digium.com>
Acked-by: Kinsey Moore <kmoore at digium.com>
Acked-by: Russ Meyerriecks <rmeyerriecks at digium.com>
Modified:
linux/trunk/drivers/dahdi/firmware/Makefile
Modified: linux/trunk/drivers/dahdi/firmware/Makefile
URL: http://svnview.digium.com/svn/dahdi/linux/trunk/drivers/dahdi/firmware/Makefile?view=diff&rev=9434&r1=9433&r2=9434
==============================================================================
--- linux/trunk/drivers/dahdi/firmware/Makefile (original)
+++ linux/trunk/drivers/dahdi/firmware/Makefile Wed Oct 20 07:22:42 2010
@@ -80,7 +80,7 @@
echo "Attempting to download $@"; \
if test ! -f $@; then $(DOWNLOAD) $(WGET_ARGS) $(FIRMWARE_URL)/$@; fi; \
if test ! -f $@; then exit 1; fi; \
- (cat $@ | gzip -d | tar -xof -) \
+ (cat $@ | gzip -d | tar --no-same-owner -xf -) \
fi
firmware-loaders: $(FWLOADERS)
@@ -89,7 +89,7 @@
dahdi-fwload-vpmadt032-$(VPMADT032_VERSION).tar.gz:
@if test ! -f $@; then echo "Attempting to download $@"; $(DOWNLOAD) $(WGET_ARGS) $(FIRMWARE_URL)/$@; fi; \
if test ! -f $@; then exit 1; fi; \
- (cd ../../..; cat drivers/dahdi/firmware/$@ | gzip -d | tar -xof -)
+ (cd ../../..; cat drivers/dahdi/firmware/$@ | gzip -d | tar --no-same-owner -xf -)
# Create object files suitable for linking against
object-build: $(FIRMWARE) $(OBJECT_FILES)
More information about the dahdi-commits
mailing list