diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2020-06-17 19:28:43 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2020-06-17 19:34:57 +0200 |
commit | f3fc8b7c96d27739e427cc8d8d62860a74892fd1 (patch) | |
tree | e2abaabf7f0a80f07117d68e5ef9e11ad5f60fde /media-video | |
parent | dev-ada/xmlada: clean examples directory (diff) | |
download | gentoo-f3fc8b7c96d27739e427cc8d8d62860a74892fd1.tar.gz gentoo-f3fc8b7c96d27739e427cc8d8d62860a74892fd1.tar.bz2 gentoo-f3fc8b7c96d27739e427cc8d8d62860a74892fd1.zip |
media-video/ffmpeg: set symbol/object thingy
Fixes
/var/tmp/portage/media-video/ffmpeg-4.3/work/ffmpeg-4.3/configure: line 5719: nm: command not found
as seen in bug 728566.
Bug: https://bugs.gentoo.org/728566
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/ffmpeg/ffmpeg-4.3.ebuild | 1 | ||||
-rw-r--r-- | media-video/ffmpeg/ffmpeg-9999.ebuild | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/media-video/ffmpeg/ffmpeg-4.3.ebuild b/media-video/ffmpeg/ffmpeg-4.3.ebuild index 80c6f85b3579..3536d79ae995 100644 --- a/media-video/ffmpeg/ffmpeg-4.3.ebuild +++ b/media-video/ffmpeg/ffmpeg-4.3.ebuild @@ -470,6 +470,7 @@ multilib_src_configure() { --cc="$(tc-getCC)" \ --cxx="$(tc-getCXX)" \ --ar="$(tc-getAR)" \ + --nm="$(tc-getNM)" \ --ranlib="$(tc-getRANLIB)" \ --optflags="${CFLAGS}" \ $(use_enable static-libs static) \ diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild index feaa590acf9f..7bd989acf33e 100644 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild @@ -470,6 +470,7 @@ multilib_src_configure() { --cc="$(tc-getCC)" \ --cxx="$(tc-getCXX)" \ --ar="$(tc-getAR)" \ + --nm="$(tc-getNM)" \ --ranlib="$(tc-getRANLIB)" \ --optflags="${CFLAGS}" \ $(use_enable static-libs static) \ |