changeset 1140:73e5bcfa9f63

If there is anything in man, cp -a won't follow a symlink on the target, it'll instead complain it can't replace a non-directory with a directory. Right, this micro-optimization's not worth the hassle...
author Rob Landley <rob@landley.net>
date Wed, 23 Jun 2010 13:30:50 -0500
parents 2c6d799f0451
children 08fa64c3c6fc
files simple-root-filesystem.sh
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/simple-root-filesystem.sh	Tue Jun 22 17:52:27 2010 -0500
+++ b/simple-root-filesystem.sh	Wed Jun 23 13:30:50 2010 -0500
@@ -33,11 +33,6 @@
     ln -s "usr/$i" "$STAGE_DIR/$i" || dienow
   done
 
-  # Have only one man page directory.  (And make sure it exists so dangling
-  # symlinks don't confuse the cp in root-filesystem.sh.)
-  ln -s share/man "$STAGE_DIR/usr/man" &&
-  mkdir -p "$STAGE_DIR/usr/share/man" || dienow
-
   STAGE_DIR="$STAGE_DIR/usr"
 else
   mkdir -p "$STAGE_DIR/bin" || dienow