comparison src/faad2.mk @ 3630:c803d4c88481

faad2: build with -no-undefines flag * src/faad2.mk: call amke with -no-undefines flag
author John Donoghue <john.donoghue@ieee.org>
date Sun, 29 Jun 2014 15:47:12 -0400
parents 13be64f9f16d
children e714c8fe73db
comparison
equal deleted inserted replaced
3629:5aba05f2226e 3630:c803d4c88481
19 define $(PKG)_BUILD 19 define $(PKG)_BUILD
20 cd '$(1)' && ./configure \ 20 cd '$(1)' && ./configure \
21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ 21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
22 --prefix='$(HOST_PREFIX)' \ 22 --prefix='$(HOST_PREFIX)' \
23 $(ENABLE_SHARED_OR_STATIC) 23 $(ENABLE_SHARED_OR_STATIC)
24 $(MAKE) -C '$(1)' -j '$(JOBS)' 24 $(MAKE) -C '$(1)' -j '$(JOBS)' LDFLAGS='-no-undefined'
25 $(MAKE) -C '$(1)' -j 1 install 25 $(MAKE) -C '$(1)' -j 1 install LDFLAGS='-no-undefined'
26 endef 26 endef
27 27