From: Jan Nieuwenhuizen Date: Fri, 29 Aug 2003 11:14:07 +0000 (+0000) Subject: * cygwin/bug-lilypond-cygwin.sh: Run latex on lily output (WAS: tex). X-Git-Tag: release/1.8.2~4 X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=commitdiff_plain;h=42bf628985ce42edf9d7c4f5c4acef5bc2d4d9fb;p=lilypond.git * cygwin/bug-lilypond-cygwin.sh: Run latex on lily output (WAS: tex). * stepmake/stepmake/generic-vars.make: Check for i686-cygwin arch too. --- diff --git a/ChangeLog b/ChangeLog index 65a881f6c7..77255f6f7d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-08-29 Jan Nieuwenhuizen + + * cygwin/bug-lilypond-cygwin.sh: Run latex on lily output (WAS: tex). + + * stepmake/stepmake/generic-vars.make: Check for i686-cygwin arch + too. + 2003-08-27 Jan Nieuwenhuizen * scripts/lilypond-book.py (compose_full_body): Do not emit diff --git a/cygwin/bug-lilypond-cygwin.sh b/cygwin/bug-lilypond-cygwin.sh index 1c61929e58..61d8232f63 100644 --- a/cygwin/bug-lilypond-cygwin.sh +++ b/cygwin/bug-lilypond-cygwin.sh @@ -58,7 +58,7 @@ kpsewhich feta20.pk cp $docdir/input/example-1.ly . cp $docdir/input/example-2.ly . lilypond example-1.ly -tex \\nonstopmode \\input example-1.tex +latex \\nonstopmode \\input example-1.tex dvips -o example-1.ps example-1.dvi ls -l ly2dvi --verbose example-2 diff --git a/cygwin/changelog b/cygwin/changelog index 34d17110c3..a80129dcb8 100644 --- a/cygwin/changelog +++ b/cygwin/changelog @@ -1,3 +1,9 @@ +lilypond (1.8.1-12) unstable; urgency=low + + * Cygwin build fix: add cygwin-specific profile and postinstall scripts. + + -- Jan Nieuwenhuizen Fri, 29 Aug 2003 13:10:17 +0200 + lilypond (1.8.1-11) unstable; urgency=low * New upstream release. diff --git a/cygwin/lilypond-doc.hint b/cygwin/lilypond-doc.hint index 654de5de98..84730a49f4 100644 --- a/cygwin/lilypond-doc.hint +++ b/cygwin/lilypond-doc.hint @@ -1,5 +1,5 @@ sdesc: "LilyPond documentation." -test: 1.8.1-11 +test: 1.8.1-12 curr: 1.6.11-1 category: Doc ldesc: "LilyPond Documentation in HTML, PS, PDF and DVI formats. This diff --git a/cygwin/lilypond.hint b/cygwin/lilypond.hint index 950de3a567..27ce12dbec 100644 --- a/cygwin/lilypond.hint +++ b/cygwin/lilypond.hint @@ -1,5 +1,5 @@ sdesc: "A program for printing sheet music" -test: 1.8.1-11 +test: 1.8.1-12 curr: 1.6.11-1 category: Publishing requires: bash cygwin fileutils findutils ghostscript libguile12abi13 libguile12 libiconv2 libintl2 libkpathsea3 libkpathsea3abi13 python tetex-bin tetex-tiny diff --git a/stepmake/stepmake/generic-vars.make b/stepmake/stepmake/generic-vars.make index bbba281caa..1f718a9ef6 100644 --- a/stepmake/stepmake/generic-vars.make +++ b/stepmake/stepmake/generic-vars.make @@ -116,3 +116,8 @@ HOST_ARCH=$(shell $(CC) -dumpmachine) ifeq ($(HOST_ARCH),i686-pc-cygwin) CYGWIN_BUILD = yes endif +# +# ugh-- what if someone decides on: 'i568-pc-cygwin-gnu' +ifeq ($(HOST_ARCH),i686-cygwin) +CYGWIN_BUILD = yes +endif