binutils: move man-pages to /usr/share/man

This commit is contained in:
Juergen Daubert 2015-07-25 19:41:52 +02:00
parent 3fd3a9514c
commit 1cc4b96e2a
2 changed files with 23 additions and 23 deletions

View File

@ -106,24 +106,25 @@ lrwxrwxrwx root/root usr/lib/libbfd.so -> libbfd-2.25.1.so
-rw-r--r-- root/root usr/lib/libopcodes.a
-rwxr-xr-x root/root usr/lib/libopcodes.la
lrwxrwxrwx root/root usr/lib/libopcodes.so -> libopcodes-2.25.1.so
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/addr2line.1.gz
-rw-r--r-- root/root usr/man/man1/ar.1.gz
-rw-r--r-- root/root usr/man/man1/as.1.gz
-rw-r--r-- root/root usr/man/man1/c++filt.1.gz
-rw-r--r-- root/root usr/man/man1/dlltool.1.gz
-rw-r--r-- root/root usr/man/man1/elfedit.1.gz
-rw-r--r-- root/root usr/man/man1/gprof.1.gz
-rw-r--r-- root/root usr/man/man1/ld.1.gz
-rw-r--r-- root/root usr/man/man1/nlmconv.1.gz
-rw-r--r-- root/root usr/man/man1/nm.1.gz
-rw-r--r-- root/root usr/man/man1/objcopy.1.gz
-rw-r--r-- root/root usr/man/man1/objdump.1.gz
-rw-r--r-- root/root usr/man/man1/ranlib.1.gz
-rw-r--r-- root/root usr/man/man1/readelf.1.gz
-rw-r--r-- root/root usr/man/man1/size.1.gz
-rw-r--r-- root/root usr/man/man1/strings.1.gz
-rw-r--r-- root/root usr/man/man1/strip.1.gz
-rw-r--r-- root/root usr/man/man1/windmc.1.gz
-rw-r--r-- root/root usr/man/man1/windres.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/addr2line.1.gz
-rw-r--r-- root/root usr/share/man/man1/ar.1.gz
-rw-r--r-- root/root usr/share/man/man1/as.1.gz
-rw-r--r-- root/root usr/share/man/man1/c++filt.1.gz
-rw-r--r-- root/root usr/share/man/man1/dlltool.1.gz
-rw-r--r-- root/root usr/share/man/man1/elfedit.1.gz
-rw-r--r-- root/root usr/share/man/man1/gprof.1.gz
-rw-r--r-- root/root usr/share/man/man1/ld.1.gz
-rw-r--r-- root/root usr/share/man/man1/nlmconv.1.gz
-rw-r--r-- root/root usr/share/man/man1/nm.1.gz
-rw-r--r-- root/root usr/share/man/man1/objcopy.1.gz
-rw-r--r-- root/root usr/share/man/man1/objdump.1.gz
-rw-r--r-- root/root usr/share/man/man1/ranlib.1.gz
-rw-r--r-- root/root usr/share/man/man1/readelf.1.gz
-rw-r--r-- root/root usr/share/man/man1/size.1.gz
-rw-r--r-- root/root usr/share/man/man1/strings.1.gz
-rw-r--r-- root/root usr/share/man/man1/strip.1.gz
-rw-r--r-- root/root usr/share/man/man1/windmc.1.gz
-rw-r--r-- root/root usr/share/man/man1/windres.1.gz

View File

@ -15,7 +15,6 @@ build() {
cd build
../$name-$version/configure --prefix=/usr \
--mandir=/usr/man \
--enable-shared \
--disable-nls \
--enable-ld=default \
@ -28,6 +27,6 @@ build() {
install -m 0644 ../$name-$version/include/libiberty.h $PKG/usr/include
rm -r $PKG/usr/share
rm -r $PKG/usr/share/info
sed -i "s|-L$SRC[^ ]* ||g" $PKG/usr/lib/lib{bfd,opcodes}.la
}