[pisa-src] r2242 - trunk/tools/pisa_autobuild.sh

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Wed, 07 Apr 2010 13:03:14 +0200

Author: biurrun
Date: Wed Apr  7 13:03:13 2010
New Revision: 2242

Log:
Properly escape '.' in sed regular expression.

Modified:
   trunk/tools/pisa_autobuild.sh

Modified: trunk/tools/pisa_autobuild.sh
==============================================================================
--- trunk/tools/pisa_autobuild.sh       Wed Apr  7 10:26:17 2010        (r2241)
+++ trunk/tools/pisa_autobuild.sh       Wed Apr  7 13:03:13 2010        (r2242)
@@ -62,7 +62,7 @@
 # Make sure that 'make dist' is complete.
 check_dist()
 {
-    find -L . | sed -e 1d -e 's:./::' -e '/.svn/d' -e '/autom4te.cache/d' -e 
'/file_list_checkout/d' |
+    find -L . | sed -e 1d -e 's:./::' -e '/\.svn/d' -e '/autom4te.cache/d' -e 
'/file_list_checkout/d' |
         sort > file_list_checkout
     ./configure && make dist
     tar -tzf pisa-*.tar.gz |

Other related posts:

  • » [pisa-src] r2242 - trunk/tools/pisa_autobuild.sh - Diego Biurrun