diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2015-09-11 14:48:07 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2015-09-11 14:48:07 +0000 |
commit | e5c270905bc8e4dbdfa57512ab04648e1202a6cd (patch) | |
tree | 1bbd4e328d6c9fec6fd6941714b5ca74354d6b48 /lib | |
parent | 9dba3eea2e349ca9591f897975888e8ae593051a (diff) |
Pass "openbsd" instead of "openbsd-elf" as the "flavour" to the perl assembler
machinery. OpenBSD has never been not ELF on amd64, and changing this will
actually make -portable life slightly easier in the near future.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/crypto/arch/amd64/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/crypto/arch/amd64/Makefile.inc b/lib/libcrypto/crypto/arch/amd64/Makefile.inc index 3f921964515..081ed3c252f 100644 --- a/lib/libcrypto/crypto/arch/amd64/Makefile.inc +++ b/lib/libcrypto/crypto/arch/amd64/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.4 2014/11/17 20:31:21 miod Exp $ +# $OpenBSD: Makefile.inc,v 1.5 2015/09/11 14:48:06 miod Exp $ # amd64-specific libcrypto build rules @@ -63,7 +63,7 @@ SRCS+= ${f}.S GENERATED+=${f}.S ${f}.S: ${LCRYPTO_SRC}/${dir}/asm/${f}.pl (cd ${LCRYPTO_SRC}/${dir} ; \ - /usr/bin/perl ./asm/${f}.pl openbsd-elf) > ${.TARGET} + /usr/bin/perl ./asm/${f}.pl openbsd) > ${.TARGET} .endfor CFLAGS+= -DOPENSSL_CPUID_OBJ |