From 1704adade4463aa3a47aec0ac81b840141a4fe53 Mon Sep 17 00:00:00 2001 From: Jan-Piet Mens Date: Wed, 28 Oct 2015 00:35:14 +0100 Subject: [PATCH] fix codesign condition --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3d678df..64c06c1 100644 --- a/Makefile +++ b/Makefile @@ -69,7 +69,7 @@ all: $(TARGETS) ot-recorder: recorder.o $(OTR_OBJS) $(CC) $(CFLAGS) -o ot-recorder recorder.o $(OTR_OBJS) $(LIBS) - [ -x codesign.sh ] && ./codesign.sh + if test -r codesign.sh; then /bin/sh codesign.sh; fi ocat: ocat.o $(OTR_OBJS) $(CC) $(CFLAGS) -o ocat ocat.o $(OTR_OBJS) $(LIBS)