diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /fltk/fltk-1.2+cvs20040806/makefiles.patch | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'fltk/fltk-1.2+cvs20040806/makefiles.patch')
-rw-r--r-- | fltk/fltk-1.2+cvs20040806/makefiles.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/fltk/fltk-1.2+cvs20040806/makefiles.patch b/fltk/fltk-1.2+cvs20040806/makefiles.patch index e69de29bb2..3a4b7b0322 100644 --- a/fltk/fltk-1.2+cvs20040806/makefiles.patch +++ b/fltk/fltk-1.2+cvs20040806/makefiles.patch @@ -0,0 +1,36 @@ +Index: Makefile +=================================================================== +RCS file: /cvsroot/fltk/fltk/Makefile,v +retrieving revision 1.12.2.6.2.14.2.7 +diff -u -r1.12.2.6.2.14.2.7 Makefile +--- fltk.orig/Makefile 6 Jul 2004 00:22:49 -0000 1.12.2.6.2.14.2.7 ++++ fltk/Makefile 7 Aug 2004 13:20:20 -0000 +@@ -33,7 +33,7 @@ + all: makeinclude + for dir in $(DIRS); do\ + echo "=== making $$dir ===";\ +- (cd $$dir; $(MAKE) $(MFLAGS)) || break;\ ++ cd $$dir; $(MAKE) $(MFLAGS);\ + done + + install: makeinclude +Index: makeinclude.in +=================================================================== +RCS file: /cvsroot/fltk/fltk/makeinclude.in,v +retrieving revision 1.7.2.11.2.23.2.11 +diff -u -r1.7.2.11.2.23.2.11 makeinclude.in +--- fltk.orig/makeinclude.in 28 Jul 2004 05:25:35 -0000 1.7.2.11.2.23.2.11 ++++ fltk/makeinclude.in 7 Aug 2004 14:46:12 -0000 +@@ -109,9 +109,9 @@ + POSTBUILD = @POSTBUILD@ + + # DSO version information... +-FL_DSO_MAJOR = @FL_DSO_MAJOR +-FL_DSO_MINOR = @FL_DSO_MINOR +-FL_DSO_VERSION = @FL_DSO_VERSION ++FL_DSO_MAJOR = @FL_DSO_MAJOR@ ++FL_DSO_MINOR = @FL_DSO_MINOR@ ++FL_DSO_VERSION = @FL_DSO_VERSION@ + + # Man page extensions... + CAT1EXT = @CAT1EXT@ |