+mmv (1.01b-8.1) unstable; urgency=LOW
+
+  * NMU
+  * fixed the invalid initializer for glibc-2.1
+  * closes: #31929
+  * changed in debian/rules in the clean target:
+      + /bin/rm -f  into -rm -f 
+      + make into -make
+      + added *~
+
+ -- Hartmut Koptein <koptein@debian.org>  Fri,  9 Jul 1999 10:24:17 +0200
+
+mmv (1.01b-8) unstable; urgency=LOW
+
+  * should compile now with different headers (Bug#26955).
+
+ -- Bernd Eckenfels <ecki@debian.org>  Sun,  1 Nov 1998 05:36:36 +0100
+
 mmv (1.01b-7) frozen unstable; urgency=LOW
 
   * Remove debian/files with make clean (Bug#21526).
 
 Source: mmv
-Maintainer: Michael Meskes <meskes@debian.org>
+Maintainer: Bernd Eckenfels <ecki@debian.org>
 Section: utils
 Priority: optional
 Standards-Version: 2.4.0.1
 
 
 CC = gcc
 LDFLAGS = -s
+CFLAGS = -O2 -g -Wall
 
 # The package
 p = mmv
 build:
 # Builds the binary package.
        $(checkdir)
-       make CC="$(CC)" LDFLAGS="$(LDFLAGS)"
+       make CC="$(CC)" LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)"
        touch build
 
 clean:
 # Undoes the effect of `make -f debian/rules build'.
        $(checkdir)
-       make clean
-       /bin/rm -f debian/files* debian/substvars*
-       /bin/rm -rf debian/tmp build
+       -make clean
+       -rm -f debian/files* debian/substvars* debian/*~
+       -rm -rf debian/tmp build
 
 binary: binary-arch binary-indep
 
        chown -R root.root debian/tmp/usr/doc/$(p)
        dpkg-shlibdeps debian/tmp/usr/bin/mmv
        dpkg-gencontrol
+       dh_md5sums
        dpkg --build debian/tmp && dpkg-name -o -s .. debian/tmp.deb
 
 define checkdir
 
 static SLICER slicer[2] = {{NULL, NULL, 0}, {NULL, NULL, 0}};
 
 static int badreps = 0, paterr = 0, direrr, failed = 0, gotsig = 0, repbad;
-static FILE *outfile = stdout;
+static FILE *outfile;
 
 static char IDF[] = "$$mmvdid.";
 static char TEMP[] = "$$mmvtmp.";
 {
        char *frompat, *topat;
 
+       outfile = stdout;
+
        init();
        procargs(argc, argv, &frompat, &topat);
        domatch(frompat, topat);