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 | fe57ce8328a518fb3d43c728f7673cb7677fa750 (patch) | |
tree | 167a0852048226f72eb87f1ebb29cf289b9633bb /lib/libcrypto/arch | |
parent | e71f1d720eadcdbaabe442e1409f7783fe9dd96f (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/libcrypto/arch')
-rw-r--r-- | lib/libcrypto/arch/amd64/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/arch/amd64/Makefile.inc b/lib/libcrypto/arch/amd64/Makefile.inc index 3f921964515..081ed3c252f 100644 --- a/lib/libcrypto/arch/amd64/Makefile.inc +++ b/lib/libcrypto/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 |