From: David Reiss Date: Wed, 11 Jun 2008 01:02:31 +0000 (+0000) Subject: Make invocation of 'find' in alterl Makefile more compatible X-Git-Tag: 0.2.0~710 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=ddffed5ff4f5d03bbaccaa3070ac9b7b865b37cf;p=common%2Fthrift.git 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 git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@666452 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/lib/alterl/src/Makefile b/lib/alterl/src/Makefile index e157041a..9855aa31 100644 --- a/lib/alterl/src/Makefile +++ b/lib/alterl/src/Makefile @@ -25,8 +25,8 @@ INSTALL_DST = $(ERLANG_OTP)/lib/$(APP_NAME)-$(VSN) # ---------------------------------------------------- -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