![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit 3fd3a9514c6a85a2c964ec2e815f3b3cfa1fe3f0 Author: Juergen Daubert <jue@jue.li> Date: Sat Jul 25 19:33:44 2015 +0200 bin86: move man-pages to /usr/share/man diff --git a/bin86/.footprint b/bin86/.footprint index 32d3b40..4da5fc0 100644 --- a/bin86/.footprint +++ b/bin86/.footprint @@ -5,7 +5,8 @@ drwxr-xr-x root/root usr/bin/ lrwxrwxrwx root/root usr/bin/nm86 -> objdump86 -rwxr-xr-x root/root usr/bin/objdump86 lrwxrwxrwx root/root usr/bin/size86 -> objdump86 -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/as86.1.gz --rw-r--r-- root/root usr/man/man1/ld86.1.gz +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/as86.1.gz +-rw-r--r-- root/root usr/share/man/man1/ld86.1.gz diff --git a/bin86/Pkgfile b/bin86/Pkgfile index a0e6630..8559c49 100644 --- a/bin86/Pkgfile +++ b/bin86/Pkgfile @@ -12,6 +12,6 @@ build() { cd $name-$version patch -p1 -i $SRC/$name-x86_64.patch make -j1 CFLAGS="$CFLAGS -D_POSIX_SOURCE" PREFIX=/usr - mkdir -p $PKG/usr/{bin,man/man1} - make PREFIX=$PKG/usr install + install -d $PKG/usr/{bin,share/man/man1} + make PREFIX=$PKG/usr MANDIR=$PKG/usr/share/man/man1 install }