Skip to content

Commit

Permalink
fixed dependency Makefile
Browse files Browse the repository at this point in the history
In commit 493a0d2, two more quotes were added. This resulted in failing to run the Makefile. This patch removed the unnecessary quotes.
  • Loading branch information
yufengzh authored Oct 5, 2020
1 parent 3bffe3e commit df09512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ else
endif

# Set shared lib extension for each OS
DEPS_PACKAGES = $(if $(USE_DEPS),$(USE_DEPS),"relic openssl gtest")
DEPS_PACKAGES = $(if $(USE_DEPS),$(USE_DEPS),relic openssl gtest)
ADD_CFLAGS :=
OS_CXXFLAGS :=
WITH_BP :=
Expand Down

0 comments on commit df09512

Please sign in to comment.