diff options
author | Jeremy Katz <katzj@redhat.com> | 2008-02-13 18:18:36 -0500 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2008-02-14 17:21:11 -0500 |
commit | 12410ec29b97a94864d9000ee4d0aee2208f8144 (patch) | |
tree | e3c0854dde1f8d7a54034709c5ce03b11bca4e5b /scripts/upd-instroot | |
parent | 6efaba499c713f12041b87c2bfe8a30067ddd697 (diff) | |
download | anaconda-12410ec29b97a94864d9000ee4d0aee2208f8144.tar.gz anaconda-12410ec29b97a94864d9000ee4d0aee2208f8144.tar.xz anaconda-12410ec29b97a94864d9000ee4d0aee2208f8144.zip |
Fix up the groff related stuff for man pages to be done in the correct place
We should be doing the linking for the groff stuff in upd-instroot as it
isn't relevant for the initrds
Diffstat (limited to 'scripts/upd-instroot')
-rwxr-xr-x | scripts/upd-instroot | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/upd-instroot b/scripts/upd-instroot index d3ab88bea..a61c2d7d2 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -946,6 +946,13 @@ if [ -n "$NEEDGR" -a -d "$DESTDIR"/etc/joe ]; then ln -fs jpico $DESTGR/usr/bin/nano fi +# fix up some links for man page related stuff +for p in $DEST $DESTGR; do + for file in nroff groff iconv geqn gtbl gpic grefer ; do + ln -fs /mnt/sysimage/usr/bin/$file $p/usr/bin/$file + done +done + # create selinux config if [ -e $DEST/etc/selinux/targeted ]; then cat > $DEST/etc/selinux/config <<EOF |