Skip to content

Commit

Permalink
Merge pull request #7 from linusdm/improve_nif_makefile
Browse files Browse the repository at this point in the history
Makefile: only check ICU_FLAGS (ICU_LIBS seems to be empty)
  • Loading branch information
kipcole9 authored Feb 25, 2023
2 parents ca77c5d + 33571a6 commit e7ed7a4
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions c_src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,7 @@ else
ICU_LIBS = $(shell pkg-config --libs icu-uc icu-io)
endif

ifeq ($(ICU_FLAGS),"")
$(error ICU_FLAGS not set, is pkg-config installed?)
endif

ifeq ($(ICU_LIBS),"")
ifeq ($(ICU_LIBS),)
$(error ICU_LIBS not set, is pkg-config installed?)
endif

Expand Down

0 comments on commit e7ed7a4

Please sign in to comment.