aboutsummaryrefslogtreecommitdiff
path: root/engines/ccgost
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-05-23 06:33:41 +0200
committerRichard Levitte <levitte@openssl.org>2015-05-23 06:33:41 +0200
commit8b822d2566853ee5e313c37529f71336209b28ab (patch)
treef9dbbdffaebdbaa5c7c482dda821fa55d0d4833d /engines/ccgost
parent6f45032f6730622e8d484d92e07c7fce7d1f88ac (diff)
downloadopenssl-8b822d2566853ee5e313c37529f71336209b28ab.zip
openssl-8b822d2566853ee5e313c37529f71336209b28ab.tar.gz
openssl-8b822d2566853ee5e313c37529f71336209b28ab.tar.bz2
Fix update and depend in engines/
The update: target in engines/ didn't recurse into engines/ccgost. The update: and depend: targets in engines/ccgost needed a fixup. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'engines/ccgost')
-rw-r--r--engines/ccgost/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/ccgost/Makefile b/engines/ccgost/Makefile
index f3378aa..57b9c59 100644
--- a/engines/ccgost/Makefile
+++ b/engines/ccgost/Makefile
@@ -64,10 +64,10 @@ install:
tests:
update: local_depend
- @[ -z "$(THIS)" ] && $(MAKE) -f $(TOP)/Makefile reflect THIS=$@
+ @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
depend: local_depend
- @[ -z "$(THIS)" ] && $(MAKE) -f $(TOP)/Makefile reflect THIS=$@
+ @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
local_depend:
@[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)