Skip to content
Snippets Groups Projects
Commit da8e1274 authored by Alexandre Janniaux's avatar Alexandre Janniaux
Browse files

contrib: main: ensure NM is defined in makefile

ffmpeg rules.make is passing the variable to configure, and nm can be
present in different flavour, for example in linux/macosx
cross-compilation environments.
parent b2dc96da
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,7 @@ endif
ifneq ($(findstring $(origin AR),undefined default),)
AR := ar
endif
NM ?= nm
RANLIB ?= ranlib
STRIP ?= strip
WIDL ?= widl
......@@ -88,6 +89,7 @@ endif
ifneq ($(findstring $(origin AR),undefined default),)
AR := $(HOST)-ar
endif
NM ?= $(HOST)-nm
RANLIB ?= $(HOST)-ranlib
STRIP ?= $(HOST)-strip
WIDL ?= $(HOST)-widl
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment