diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-01-18 23:06:29 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-02-08 10:42:26 +0100 |
commit | 91326dc942de4b4cce7f518baef01f22f9895406 (patch) | |
tree | d2a68713e72a39ed3d3468ed63c3d022f9c9dbe3 /libavutil/x86/cpuid.asm | |
parent | 67e1013a961e2f5dad467dd874d15819788080c0 (diff) | |
download | ffmpeg-91326dc942de4b4cce7f518baef01f22f9895406.tar.gz |
libavutil: include assembly with full path from source root
Otherwise nasm writes the full host-specific paths into .o
output, which breaks binary reproducibility.
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavutil/x86/cpuid.asm')
-rw-r--r-- | libavutil/x86/cpuid.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/cpuid.asm b/libavutil/x86/cpuid.asm index c3f7866ec7..766f77fcdf 100644 --- a/libavutil/x86/cpuid.asm +++ b/libavutil/x86/cpuid.asm @@ -21,7 +21,7 @@ ;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;****************************************************************************** -%include "x86util.asm" +%include "libavutil/x86/x86util.asm" SECTION .text |