home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!cis.ohio-state.edu!blacks.jpl.nasa.gov!dank
- From: dank@blacks.jpl.nasa.gov (Daniel R. Kegel)
- Newsgroups: gnu.utils.bug
- Subject: Another Problem installing Texinfo-2.16 on Solaris 2
- Date: 25 Jan 1993 21:25:37 -0500
- Organization: Image Analysis Systems Group, JPL
- Lines: 30
- Sender: daemon@cis.ohio-state.edu
- Approved: bug-gnu-utils@prep.ai.mit.edu
- Distribution: gnu
- Message-ID: <dank.728007195@blacks.jpl.nasa.gov>
- References: <lm0590INN8ng@exodus.Eng.Sun.COM>
-
- Problem installing texinfo-2.16 under SunOS4.1.1 using Sun make and cc:
- Installing using --prefix seems to require running Makefile thru sed
- to fix it two places to get it to obey prefix.
-
- Here are the steps I had to follow; IMHO, the configure script should
- have modified the main Makefile, not just C/Makefile.
- - Dan Kegel
-
- # Unpacking and compilation
- # Unpack and configure texinfo
- cd $dir
- zcat texinfo-2.16.tar.Z | tar xvf -
- patch texinfo-2.16/C/configure < dan.patch
- cd $dir/texinfo-2.16/C
- configure --prefix=/usr/local/gnu
- cd $dir/texinfo-2.16
- if (! -f Makefile.orig) cp Makefile Makefile.orig
- sed -e 's,prefix = /usr/local,prefix = /usr/local/gnu,' \
- -e 's,./fixfonts,prefix=$(prefix) ./fixfonts,'< Makefile.orig > Makefile
- make all
-
- ### Installation (while root or psuedouser)
- # Install texinfo
- mkdir /usr/local/gnu/lib/{tex,tex/inputs,tex/fonts}
- # Following line only works if you have TeX installed in /usr/local/tex
- ln -s /usr/local/tex/lib/fonts/* /usr/local/gnu/lib/tex/fonts
- cd $dir/texinfo-2.16
- make install
-
-
-