fix special chars in document.

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2383 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2006-08-23 10:52:12 +00:00
parent 60902ed3a1
commit e4ff2a51df
1 changed files with 5 additions and 5 deletions

View File

@ -148,7 +148,7 @@ Once the source tree is checked out, it can be updated with:
{ \small
\begin{verbatim}
% cvs update ­Pd
% cvs update -Pd
\end{verbatim}
}
@ -330,7 +330,7 @@ If an option contains a string, this string has to be protected with
quotation marks:
\begin{verbatim}
default CC="gcc ­m32"
default CC="gcc -m32"
\end{verbatim}
\item \begin{verbatim}option\end{verbatim}
@ -407,7 +407,7 @@ option on how to set them.
\item \begin{verbatim}CC\end{verbatim}
Target C Compiler. Default is \texttt{\$(CROSS\_COMPILE)gcc}. Set to
\texttt{gcc ­m32} for compiling AMD64 LinuxBIOS images on an AMD64
\texttt{gcc -m32} for compiling AMD64 LinuxBIOS images on an AMD64
machine.
\item \begin{verbatim}CONFIG_CHIP_CONFIGURE \end{verbatim}
@ -552,12 +552,12 @@ do:
\begin{verbatim}
makerule ./auto.E
depends "$(MAINBOARD)/auto.c option_table.h ./romcc"
action "./romcc -E -mcpu=k8 -O2 ­I$(TOP)/src -I. $(CPPFLAGS) \
action "./romcc -E -mcpu=k8 -O2 -I$(TOP)/src -I. $(CPPFLAGS) \
$(MAINBOARD)/auto.c -o $@"
end
makerule ./auto.inc
depends "$(MAINBOARD)/auto.c option_table.h ./romcc"
action "./romcc -mcpu=k8 -O2 ­I$(TOP)/src -I. $(CPPFLAGS) \
action "./romcc -mcpu=k8 -O2 -I$(TOP)/src -I. $(CPPFLAGS) \
$(MAINBOARD)/auto.c -o $@"
end
\end{verbatim}