123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #! /bin/sh
- required=bzip2
- . test-init.sh
- echo AC_OUTPUT >> configure.ac
- : > Makefile.am
- $ACLOCAL || fatal_ "aclocal failed"
- $AUTOCONF || fatal_ "autoconf failed"
- $AUTOMAKE || fatal_ "automake failed"
- ./configure
- $MAKE dist-gzip dist-bzip2
- gzip -dc $distdir.tar.gz | tar tf - > one || { cat one; exit 1; }
- cat one
- bzip2 -dc $distdir.tar.gz | tar tf - > two || { cat two; exit 1; }
- cat two
- $FGREP "$distdir/Makefile.am" one
- diff one two
- :
|