Changeset 319

Show
Ignore:
Timestamp:
07/21/06 03:33:54 (6 years ago)
Author:
tg
Message:

use the tar frontend instead of the cpio frontend for extracting here
saves calls to zcat and redirection, besides, paxmirabilis maybe will
be able to do direct gzio soonish

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/rules.mk

    r317 r319  
    133133                        case $$file in \ 
    134134                        *.cpio | *.tar) \ 
    135                                 cpio -mid <$$file ;; \ 
     135                                tar xf $$file ;; \ 
    136136                        *.cpio.Z | *.cpio.gz | *.cgz | *.mcz | \ 
    137137                            *.tar.Z | *.tar.gz | *.taz | *.tgz) \ 
    138                                 gzip -dc $$file | cpio -mid ;; \ 
     138                                tar xzf $$file ;; \ 
    139139                        *.cpio.bz2 | *.cbz | *.tar.bz2 | *.tbz | *.tbz2) \ 
    140140                                bzip2 -dc $$file | cpio -mid ;; \