diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | ubi-utils/Makefile | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -3,7 +3,7 @@ OPTFLAGS := -O2 -Wall SBINDIR=/usr/sbin -MANDIR=/usr/man +MANDIR=/usr/share/man INCLUDEDIR=/usr/include #CROSS=arm-linux- CC := $(CROSS)gcc @@ -92,5 +92,5 @@ install: ${TARGETS} mkdir -p ${DESTDIR}/${SBINDIR} install -m0755 ${TARGETS} ${DESTDIR}/${SBINDIR}/ mkdir -p ${DESTDIR}/${MANDIR}/man1 - gzip -c mkfs.jffs2.1 > ${DESTDIR}/${MANDIR}/man1/mkfs.jffs2.1.gz + gzip -9c mkfs.jffs2.1 > ${DESTDIR}/${MANDIR}/man1/mkfs.jffs2.1.gz make -C $(BUILDDIR)/ubi-utils install diff --git a/ubi-utils/Makefile b/ubi-utils/Makefile index 8c1994c..e86738b 100644 --- a/ubi-utils/Makefile +++ b/ubi-utils/Makefile @@ -6,7 +6,7 @@ OPTFLAGS := -O2 -g -Wall KERNELHDR := ../include DESTDIR := /usr/local SBINDIR=/usr/sbin -MANDIR=/usr/man +MANDIR=/usr/share/man INCLUDEDIR=/usr/include CC := $(CROSS)gcc |