|
|
@ -26,12 +26,10 @@ |
|
|
|
x11doc_main() { |
|
|
|
xf_extract |
|
|
|
|
|
|
|
xf_config # I wonder if this is really required - DZ |
|
|
|
|
|
|
|
echo "Copy X11 Documentation and creating X11 symlink ..." |
|
|
|
rm -rfv ${docdir%/*}/X11 |
|
|
|
cp -rv doc/* $docdir |
|
|
|
rm -rfv $docdir/man # Not optimal, but man/* is only about 4MB |
|
|
|
cp -rv doc/* $docdir # We don't want to track doc/ all the time |
|
|
|
rm -rfv $docdir/man # Not optimal, but man/ is only about 4MB |
|
|
|
cd ${docdir%/*} |
|
|
|
ln -sv ${docdir##*/} X11 |
|
|
|
} |
|
|
|