quote iname expression in Makefile to prevent shell expansion

master
melvinzhang 2015-04-19 23:09:50 +08:00
parent 07cf6c22b4
commit 473389ca1c
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ LIBS=.:lib/annotations.jar:lib/jsr305.jar:release/lib/groovy-all-*.jar
RUN=$(JAVA) -Dcom.sun.management.jmxremote -cp $(LIBS):$(MAG)
SHELL=/bin/bash
BUILD=build
SRC=$(shell find src -iname *.java)
SRC=$(shell find src -iname "*.java")
NO_OUTPUT:=awk 'BEGIN{RS="\a"}{print; exit 1}'
all: tags $(MAG) $(EXE)