diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2023-12-11 03:05:18 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2023-12-11 03:05:18 +0000 |
commit | 67b6969458271006552d123cce8ee5001a8f502c (patch) | |
tree | 9c7f5973cd5a9f995063bf4ba676c25fe4aaadc9 /libexec | |
parent | 4fc0aa8a915b6da273dda96eeb2957360e9b24d3 (diff) |
arm just had to be different and change the syntax for .pushsection
arguments, so we have to cope.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/ld.so/arm/SYS.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ld.so/arm/SYS.h b/libexec/ld.so/arm/SYS.h index 79f59756e6b..faa5804dc9b 100644 --- a/libexec/ld.so/arm/SYS.h +++ b/libexec/ld.so/arm/SYS.h @@ -1,4 +1,4 @@ -/* $OpenBSD: SYS.h,v 1.4 2023/12/10 16:45:50 deraadt Exp $ */ +/* $OpenBSD: SYS.h,v 1.5 2023/12/11 03:05:17 deraadt Exp $ */ /* * Copyright (c) 2004 Dale Rahn @@ -30,7 +30,7 @@ #include <sys/syscall.h> #define PINSYSCALL(sysno, label) \ - .pushsection .openbsd.syscalls,"",@progbits ;\ + .pushsection .openbsd.syscalls,"",%progbits ;\ .long label ;\ .long sysno ;\ .popsection |