]> git.donarmstrong.com Git - lilypond.git/commitdiff
Cygwin fix from stable.
authorJan Nieuwenhuizen <janneke@gnu.org>
Sat, 20 Sep 2003 11:50:34 +0000 (11:50 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Sat, 20 Sep 2003 11:50:34 +0000 (11:50 +0000)
ChangeLog
stepmake/stepmake/generic-vars.make

index db425d472fefb2ba057e19f053efa973daaa0c0b..69d8a351d2cb36625561dcf7ae7fbde5e4db2a33 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2003-09-20  Jan Nieuwenhuizen  <janneke@gnu.org>
 
+       * stepmake/stepmake/generic-vars.make: Cygwin fix from stable.
+
        * cygwin/mknetrel: Updates for native use on Cygwin.
 
        * lily/parser.yy: Compile fix: add stdio.h for snprintf.
index bbba281caad1ead2af9e9a46c87bd0d642f075da..117afbfdc988464147820375921013eba7cc75b2 100644 (file)
@@ -112,7 +112,14 @@ OUTIN_FILES = $(addprefix $(outdir)/, $(IN_FILES:%.in=%))
 
 ALL_SOURCES = $(SOURCE_FILES)
 
+# Check if we are building for Cygwin
+#
 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