2003-05-10 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.in (gdb-cfg.texi): Replace $$LN_S with $(LN_S). (gdb.dvi): Likewise. (gdb.pdf): Likewise. (links2roff): Likewise.
This commit is contained in:
parent
b424635c49
commit
44e2be90a4
2 changed files with 11 additions and 4 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2003-05-10 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* Makefile.in (gdb-cfg.texi): Replace $$LN_S with $(LN_S).
|
||||||
|
(gdb.dvi): Likewise.
|
||||||
|
(gdb.pdf): Likewise.
|
||||||
|
(links2roff): Likewise.
|
||||||
|
|
||||||
2003-05-08 Jim Blandy <jimb@redhat.com>
|
2003-05-08 Jim Blandy <jimb@redhat.com>
|
||||||
|
|
||||||
* gdb.texinfo (Dump/Restore Files): Update documentation for
|
* gdb.texinfo (Dump/Restore Files): Update documentation for
|
||||||
|
|
|
@ -245,7 +245,7 @@ GDBvn.texi : ${gdbdir}/version.in
|
||||||
# not one for their binary config---which may not be specifically
|
# not one for their binary config---which may not be specifically
|
||||||
# defined anyways).
|
# defined anyways).
|
||||||
gdb-cfg.texi: ${srcdir}/${DOC_CONFIG}-cfg.texi
|
gdb-cfg.texi: ${srcdir}/${DOC_CONFIG}-cfg.texi
|
||||||
(test "$$LN_S" = "ln -s" && \
|
(test "$(LN_S)" = "ln -s" && \
|
||||||
ln -s ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi) || \
|
ln -s ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi) || \
|
||||||
ln ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi || \
|
ln ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi || \
|
||||||
cp ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi
|
cp ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi
|
||||||
|
@ -268,7 +268,7 @@ GDB_TEX_TMPS = gdb.aux gdb.cp* gdb.fn* gdb.ky* gdb.log gdb.pg* gdb.toc \
|
||||||
# GDB MANUAL: TeX dvi file
|
# GDB MANUAL: TeX dvi file
|
||||||
gdb.dvi: ${GDB_DOC_FILES}
|
gdb.dvi: ${GDB_DOC_FILES}
|
||||||
if [ ! -f ./GDBvn.texi ]; then \
|
if [ ! -f ./GDBvn.texi ]; then \
|
||||||
(test "$$LN_S" = "ln -s" && ln -s $(srcdir)/GDBvn.texi .) || \
|
(test "$(LN_S)" = "ln -s" && ln -s $(srcdir)/GDBvn.texi .) || \
|
||||||
ln $(srcdir)/GDBvn.texi . || \
|
ln $(srcdir)/GDBvn.texi . || \
|
||||||
cp $(srcdir)/GDBvn.texi . ; else true; fi
|
cp $(srcdir)/GDBvn.texi . ; else true; fi
|
||||||
rm -f $(GDB_TEX_TMPS)
|
rm -f $(GDB_TEX_TMPS)
|
||||||
|
@ -279,7 +279,7 @@ gdb.ps: gdb.dvi
|
||||||
|
|
||||||
gdb.pdf: ${GDB_DOC_FILES}
|
gdb.pdf: ${GDB_DOC_FILES}
|
||||||
if [ ! -f ./GDBvn.texi ]; then \
|
if [ ! -f ./GDBvn.texi ]; then \
|
||||||
(test "$$LN_S" = "ln -s" && ln -s $(srcdir)/GDBvn.texi .) || \
|
(test "$(LN_S)" = "ln -s" && ln -s $(srcdir)/GDBvn.texi .) || \
|
||||||
ln $(srcdir)/GDBvn.texi . || \
|
ln $(srcdir)/GDBvn.texi . || \
|
||||||
cp $(srcdir)/GDBvn.texi . ; else true; fi
|
cp $(srcdir)/GDBvn.texi . ; else true; fi
|
||||||
rm -f $(GDB_TEX_TMPS)
|
rm -f $(GDB_TEX_TMPS)
|
||||||
|
@ -306,7 +306,7 @@ gdb.info: ${GDB_DOC_FILES}
|
||||||
# in main sourcedir.
|
# in main sourcedir.
|
||||||
links2roff: $(GDB_DOC_SOURCE_INCLUDES)
|
links2roff: $(GDB_DOC_SOURCE_INCLUDES)
|
||||||
if [ ! -f gdb.texinfo ]; then \
|
if [ ! -f gdb.texinfo ]; then \
|
||||||
(test "$$LN_S" = "ln -s" && ln -s $(GDB_DOC_SOURCE_INCLUDES) .) || \
|
(test "$(LN_S)" = "ln -s" && ln -s $(GDB_DOC_SOURCE_INCLUDES) .) || \
|
||||||
ln $(GDB_DOC_SOURCE_INCLUDES) . || \
|
ln $(GDB_DOC_SOURCE_INCLUDES) . || \
|
||||||
cp $(GDB_DOC_SOURCE_INCLUDES) . ; \
|
cp $(GDB_DOC_SOURCE_INCLUDES) . ; \
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue