Log message for revision 41313:
  Convert more kinds of text files to Windows line ends.
  This matches the set of files converted by the Z4I
  Windows installer now, except omits .csv files (because
  there aren't any of those in the Zope tree).
  

Changed:
  U   Zope/branches/tim-2.9-windows-installer/inst/WinBuilders/mk/zope.mk

-=-
Modified: Zope/branches/tim-2.9-windows-installer/inst/WinBuilders/mk/zope.mk
===================================================================
--- Zope/branches/tim-2.9-windows-installer/inst/WinBuilders/mk/zope.mk 
2006-01-14 15:28:53 UTC (rev 41312)
+++ Zope/branches/tim-2.9-windows-installer/inst/WinBuilders/mk/zope.mk 
2006-01-14 15:50:49 UTC (rev 41313)
@@ -27,12 +27,15 @@
        # Convert text files to Windows line ends.  unix2dos has the nice
        # property that it leaves lines with \r\n alone, so it doesn't hurt
        # to do this on files already converted to Windows convention.
+       find $(BUILD_DIR) -name "*.bat"  | xargs unix2dos
+       find $(BUILD_DIR) -name "*.conf" | xargs unix2dos
+       find $(BUILD_DIR) -name "*.html" | xargs unix2dos
+       find $(BUILD_DIR) -name "*.in"   | xargs unix2dos
        find $(BUILD_DIR) -name "*.py"   | xargs unix2dos
+       find $(BUILD_DIR) -name "*.stx"  | xargs unix2dos
        find $(BUILD_DIR) -name "*.txt"  | xargs unix2dos
-       find $(BUILD_DIR) -name "*.bat"  | xargs unix2dos
-       find $(BUILD_DIR) -name "*.conf" | xargs unix2dos
        find $(BUILD_DIR) -name "*.xml"  | xargs unix2dos
-       find $(BUILD_DIR) -name "*.in"   | xargs unix2dos
+       find $(BUILD_DIR) -name "*.zcml" | xargs unix2dos
 
        # Build the Inno installer.
        $(CD) "$(BUILD_DIR)";"$(ISS_COMPILER)" /cc "$(WIN_BUILD_DIR)\zope.iss"

_______________________________________________
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins

Reply via email to