CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
bash: updated mandir
authorVictor Martinez <pitillo@ono.com>
Wed, 2 Dec 2015 15:00:28 +0000 (15:00 +0000)
committerVictor Martinez <pitillo@ono.com>
Wed, 2 Dec 2015 15:00:28 +0000 (15:00 +0000)
bash/.footprint
bash/Pkgfile

index 98fcb554c202d54b1e672153af32644a9736b074..45306de15b42edd4d93fa5ed66a51d7f6dd7974c 100644 (file)
@@ -1,10 +1,9 @@
 drwxr-xr-x     root/root       bin/
 -rwxr-xr-x     root/root       bin/bash
-lrwxrwxrwx     root/root       bin/sh -> bash
 drwxr-xr-x     root/root       etc/
 -rw-r--r--     root/root       etc/profile
 drwxr-xr-x     root/root       usr/
-drwxr-xr-x     root/root       usr/man/
-drwxr-xr-x     root/root       usr/man/man1/
--rw-r--r--     root/root       usr/man/man1/bash.1.gz
-lrwxrwxrwx     root/root       usr/man/man1/sh.1.gz -> bash.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/bash.1.gz
index fb0bf526743f66327cd2a4bed516fbc2e84c05e1..45ac47127f3ec7bf3211b3ab50c47796d177b37d 100644 (file)
@@ -18,16 +18,12 @@ build() {
   ./configure --prefix=/usr \
               --build=arm-unknown-linux-gnueabihf \
               --exec-prefix= \
-              --mandir=/usr/man \
               --disable-nls \
               --with-curses \
               --with-installed-readline
   make -j1
 
   install -D -m 755 bash $PKG/bin/bash
-  install -D -m 644 doc/bash.1 $PKG/usr/man/man1/bash.1
+  install -D -m 644 doc/bash.1 $PKG/usr/share/man/man1/bash.1
   install -D -m 644 $SRC/profile $PKG/etc/profile
-
-  ln -s bash $PKG/bin/sh
-  ln -s bash.1 $PKG/usr/man/man1/sh.1
 }