~ubuntu-branches/ubuntu/karmic/gst-plugins-bad0.10/karmic-proposed

« back to all changes in this revision

Viewing changes to common/win32.mak

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2009-06-18 13:47:30 UTC
  • mfrom: (18.4.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090618134730-us1fh0nxq8klrln1
Tags: 0.10.13-1
* New upstream release, 'Supersonic Rocket':
  + debian/patches/01_hdvparse-link-libm.patch:
    - Dropped, merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
        @echo Checking win32 files for CR LF line endings ...; \
25
25
        fail=0 ; \
26
26
        for each in $(win32crlf) ; do \
27
 
          if ! (file $$each | grep CRLF >/dev/null) ; then \
 
27
          result=`perl -e 'print grep(/\r\n/,<>)' "$$each" | wc -l`; \
 
28
          if test "$$result" = 0 ; then \
28
29
            echo $$each must be fixed to have CRLF line endings ; \
29
30
            fail=1; \
30
31
          fi ; \