diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-05-24 02:18:40 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-05-29 16:43:11 +0200 |
commit | 535a742c2695a9e0c586b50d7fa76e318232ff24 (patch) | |
tree | 8358ee5075109fc8725e072dbf82e06774013b51 /Makefile | |
parent | 5b1b495c8d21600eac694d50f428654a3125e217 (diff) | |
download | ffmpeg-streaming-535a742c2695a9e0c586b50d7fa76e318232ff24.zip ffmpeg-streaming-535a742c2695a9e0c586b50d7fa76e318232ff24.tar.gz |
build: Change structure of the linker version script templates
Split version files into one line per symbol/directive to allow compatibility
with the Solaris linker without preprocessing and eliminate $ from version file
templates to simplify the postprocessing shell command.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -63,9 +63,7 @@ COMPILE_HOSTC = $(call COMPILE,HOSTCC) $(Q)echo '#include "$*.h"' >$@ %.ver: %.v - $(M)sed 's/$$MAJOR/$($(basename $(@F))_VERSION_MAJOR)/' $^ | sed -e 's/:/:\ -/' -e 's/; /;\ -/g' > $@ + $(M)sed 's/MAJOR/$($(basename $(@F))_VERSION_MAJOR)/' $^ > $@ %.c %.h %.ver: TAG = GEN |