diff options
author | N. Engelhardt <nak@symbioticeda.com> | 2020-05-07 19:28:18 +0200 |
---|---|---|
committer | N. Engelhardt <nak@symbioticeda.com> | 2020-05-07 19:28:18 +0200 |
commit | c9befa769ff2cf36aca6b38e5015bb5bc26ab857 (patch) | |
tree | f8c98a0509b1c20849fc380b2962ef5baed1b44e | |
parent | 06104249406972de01d0360df63a32cafcdf2ec5 (diff) | |
download | yosys-c9befa769ff2cf36aca6b38e5015bb5bc26ab857.tar.gz yosys-c9befa769ff2cf36aca6b38e5015bb5bc26ab857.tar.bz2 yosys-c9befa769ff2cf36aca6b38e5015bb5bc26ab857.zip |
Remove yosys libdir from LDFLAGS (and fix a typo)
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -82,7 +82,6 @@ YOSYS_SRC := $(dir $(firstword $(MAKEFILE_LIST))) VPATH := $(YOSYS_SRC) CXXFLAGS := $(CXXFLAGS) -Wall -Wextra -ggdb -I. -I"$(YOSYS_SRC)" -MD -D_YOSYS_ -fPIC -I$(PREFIX)/include -LDFLAGS := $(LDFLAGS) -L$(LIBDIR) LDLIBS := $(LDLIBS) -lstdc++ -lm PLUGIN_LDFLAGS := @@ -371,7 +370,7 @@ BOOST_PYTHON_LIB ?= $(shell \ endif ifeq ($(BOOST_PYTHON_LIB),) -$(error BOOST_PYTHON_LIB could not be detected. Please define manualy) +$(error BOOST_PYTHON_LIB could not be detected. Please define manually) endif ifeq ($(OS), Darwin) |