This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 3/3] doc/Makefile: Fix command list syntax


---
 doc/Makefile.am | 4 ++--
 doc/Makefile.in | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/Makefile.am b/doc/Makefile.am
index 02459d8..9d50cb3 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -34,8 +34,8 @@ SUFFIXES = ps pdf dvi ps tex
 .tex.dvi:
 	pwd=`pwd`; cd $(srcdir); \
 	latex -output-directory=$$pwd $<; \
-	touch $*.glo \
-	makeindex $*.glo -s nomencl.ist -o $*.gls \
+	touch $*.glo; \
+	makeindex $*.glo -s nomencl.ist -o $*.gls; \
 	latex -output-directory=$$pwd $<; \
 	latex -output-directory=$$pwd $<; \
 	latex -output-directory=$$pwd $<
diff --git a/doc/Makefile.in b/doc/Makefile.in
index c4a72b6..3dc73a5 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -642,8 +642,8 @@ uninstall-am: uninstall-local
 .tex.dvi:
 	pwd=`pwd`; cd $(srcdir); \
 	latex -output-directory=$$pwd $<; \
-	touch $*.glo \
-	makeindex $*.glo -s nomencl.ist -o $*.gls \
+	touch $*.glo; \
+	makeindex $*.glo -s nomencl.ist -o $*.gls; \
 	latex -output-directory=$$pwd $<; \
 	latex -output-directory=$$pwd $<; \
 	latex -output-directory=$$pwd $<
-- 
1.8.3.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]