Author: dreiss
Date: Tue Jun 10 18:02:31 2008
New Revision: 666452

URL: http://svn.apache.org/viewvc?rev=666452&view=rev
Log:
Make invocation of 'find' in alterl Makefile more compatible

Summary: find . -name instead of find -name

Test Plan: still works, now works on Darwin too

Modified:
    incubator/thrift/trunk/lib/alterl/src/Makefile

Modified: incubator/thrift/trunk/lib/alterl/src/Makefile
URL: 
http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/alterl/src/Makefile?rev=666452&r1=666451&r2=666452&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/alterl/src/Makefile (original)
+++ incubator/thrift/trunk/lib/alterl/src/Makefile Tue Jun 10 18:02:31 2008
@@ -25,8 +25,8 @@
 # ----------------------------------------------------
 
 
-MODULES = $(shell find -name \*.erl | sed s:^\\./:: | sed s/\\.erl//)
-MODULES_STRING_LIST = $(shell find -name \*.erl | sed s:^\\./:\": | sed 
s/\\.erl/\",/)
+MODULES = $(shell find . -name \*.erl | sed s:^\\./:: | sed s/\\.erl//)
+MODULES_STRING_LIST = $(shell find . -name \*.erl | sed s:^\\./:\": | sed 
s/\\.erl/\",/)
 
 HRL_FILES=
 INTERNAL_HRL_FILES= $(APP_NAME).hrl


Reply via email to