1234567891011121314151617181920212223242526272829303132333435363738 |
- AT_SETUP([compress option compatibility])
- AT_KEYWORDS([opcomp opcomp04])
- AT_CHECK([
- AT_GZIP_PREREQ
- genfile --file file
- tar czf test.tar file
- genfile --file newfile
- tar rzf test.tar newfile
- ],
- [2],
- [],
- [tar: Cannot update compressed archives
- Try 'tar --help' or 'tar --usage' for more information.
- ])
- AT_CLEANUP
|