From ad6a4017408de00ee354d7ca076191d551f8ddd8 Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Sun, 13 Nov 2016 14:55:28 -0800 Subject: [PATCH] Get rid of old git submodule init calls. (#41) --- src/common/Makefile | 2 +- src/plasma/Makefile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/common/Makefile b/src/common/Makefile index fb898ee4b..058142a57 100644 --- a/src/common/Makefile +++ b/src/common/Makefile @@ -36,7 +36,7 @@ redis: cd thirdparty ; bash ./build-redis.sh hiredis: - git submodule update --init --recursive -- "thirdparty/hiredis" ; cd thirdparty/hiredis ; make + cd thirdparty/hiredis ; make test: hiredis redis $(BUILD)/common_tests $(BUILD)/task_table_tests $(BUILD)/object_table_tests $(BUILD)/db_tests $(BUILD)/io_tests $(BUILD)/task_tests $(BUILD)/redis_tests FORCE ./thirdparty/redis-3.2.3/src/redis-server & diff --git a/src/plasma/Makefile b/src/plasma/Makefile index 3c68e1d03..fef988481 100644 --- a/src/plasma/Makefile +++ b/src/plasma/Makefile @@ -32,7 +32,6 @@ $(BUILD)/example: plasma_client.c plasma.h example.c fling.h fling.c common $(CC) $(CFLAGS) plasma_client.c example.c fling.c ../common/build/libcommon.a -o $(BUILD)/example common: FORCE - git submodule update --init --recursive cd ../common; make # Set the request timeout low for testing purposes.