[dahdi-commits] sruffell: branch linux/2.4 r9673 - /linux/branches/2.4/drivers/dahdi/firmware/
SVN commits to the DAHDI project
dahdi-commits at lists.digium.com
Thu Jan 20 23:30:08 CST 2011
Author: sruffell
Date: Thu Jan 20 23:30:03 2011
New Revision: 9673
URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=9673
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>
Origin: http://svnview.digium.com/svn/dahdi?view=rev&rev=9434
Modified:
linux/branches/2.4/drivers/dahdi/firmware/Makefile
Modified: linux/branches/2.4/drivers/dahdi/firmware/Makefile
URL: http://svnview.digium.com/svn/dahdi/linux/branches/2.4/drivers/dahdi/firmware/Makefile?view=diff&rev=9673&r1=9672&r2=9673
==============================================================================
--- linux/branches/2.4/drivers/dahdi/firmware/Makefile (original)
+++ linux/branches/2.4/drivers/dahdi/firmware/Makefile Thu Jan 20 23:30:03 2011
@@ -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