diff options
author | Ken Raeburn <raeburn@cygnus> | 1996-06-20 21:01:42 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1996-06-20 21:01:42 +0000 |
commit | 8d190aa34423fe7f2890d4d102802ad34cb3463b (patch) | |
tree | 0be24e1ffc9914ce02a3ae547bade7a4ffd12f81 /Makefile.in | |
parent | 214f540d12e910ed6f9977971585b9b8cbe0254d (diff) | |
download | gdb-8d190aa34423fe7f2890d4d102802ad34cb3463b.zip gdb-8d190aa34423fe7f2890d4d102802ad34cb3463b.tar.gz gdb-8d190aa34423fe7f2890d4d102802ad34cb3463b.tar.bz2 |
* Makefile.in (taz): Handle case where tex3patch didn't even get checked out.
Also, if it was found, put the symlink in a new util subdirectory.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 2faff65..e199c35 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1445,9 +1445,13 @@ taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \ <configure.in >proto-toplev/configure.in # mkdir proto-toplev/texinfo - ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/ - ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/ - ln -s ../../texinfo/lgpl.texinfo proto-toplev/texinfo/ + ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/ + ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/ + ln -s ../../texinfo/lgpl.texinfo proto-toplev/texinfo/ + if test -r texinfo/util/tex3patch ; then \ + mkdir proto-toplev/texinfo/util && \ + ln -s ../../../texinfo/util/tex3patch proto-toplev/texinfo/util ; \ + else true; fi chmod og=u `find . -print` (VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \ echo "==> Making $(TOOL)-$$VER.tar.gz"; \ |