From 71b38cfeb4e08ac6f338bd6f57b940b941f75ec9 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Sun, 11 Nov 2012 11:43:37 -0600 Subject: [PATCH] dos2unix for Linux/Mac build from .zip package. Issue #205 config.guess / MacOSX 10.8 / bad interpreter --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8c67a95..e61cd22 100644 --- a/Makefile +++ b/Makefile @@ -358,8 +358,9 @@ dist-src: find $(TARDIR) -name CVS -o -name .cvsignore | xargs $(RM) -r find $(TARDIR) -name .svn | xargs $(RM) -r find $(TARDIR) -name "*.patch" | xargs $(RM) -r - unix2dos $(TARDIR)/Makefile - unix2dos $(TARDIR)/config/* + dos2unix $(TARDIR)/Makefile + dos2unix $(TARDIR)/auto/Makefile + dos2unix $(TARDIR)/config/* unix2dos $(TARDIR)/auto/core/* unix2dos $(TARDIR)/auto/extensions/* find $(TARDIR) -name '*.h' | xargs unix2dos @@ -376,6 +377,7 @@ dist-src: rm -f ../$(DIST_SRC_ZIP) cd .. && zip -rv9 $(DIST_SRC_ZIP) $(DIST_DIR) dos2unix $(TARDIR)/Makefile + dos2unix $(TARDIR)/auto/Makefile dos2unix $(TARDIR)/config/* dos2unix $(TARDIR)/auto/core/* dos2unix $(TARDIR)/auto/extensions/*