diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-03-29 16:29:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-03-29 16:29:03 +0000 |
commit | 323a8de9f4386529215ee5ab8da4f36335f4be33 (patch) | |
tree | 22355c24b4a208860cc1691a9195514cd24b6434 /lib | |
parent | 81364d62bf1cacc578208a377226401be0ae2c13 (diff) |
The hppa version of as(1) requires whitespace before a .file directive,
it may not be in column 0. This kind of thing is very common in GNU
and Linux software because the software was written from the start to
be 'compatible replacements' of vendor software.
ok jsing guenther
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/sys/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/Makefile.inc b/lib/libc/sys/Makefile.inc index e749798d86a..bd6ccac5936 100644 --- a/lib/libc/sys/Makefile.inc +++ b/lib/libc/sys/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.147 2017/03/26 19:03:38 guenther Exp $ +# $OpenBSD: Makefile.inc,v 1.148 2017/03/29 16:29:02 deraadt Exp $ # $NetBSD: Makefile.inc,v 1.35 1995/10/16 23:49:07 jtc Exp $ # @(#)Makefile.inc 8.1 (Berkeley) 6/17/93 @@ -122,7 +122,7 @@ TRIM=${LD} -x -r ${.TARGET}.o -o ${.TARGET} && rm -f ${.TARGET}.o TRIM.debug=${LD} -X -r ${.TARGET}.o -o ${.TARGET} && rm -f ${.TARGET}.o -GEN_PREFIX=.file "${@:R}.S"\n\#include "SYS.h" +GEN_PREFIX=\t.file "${@:R}.S"\n\#include "SYS.h" # Pick one of these to set what ASM is generated... GENERATE.rsyscall=\ echo creating ${.TARGET} && \ |