diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2023-11-14 22:25:24 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2024-02-05 20:34:55 +0000 |
commit | 31a46e2cc84d7ebfc25ce5a33e54681057e9ed9a (patch) | |
tree | 1a981b5b613f833a45447445176e52d04063e674 /lib/libc/amd64 | |
parent | 19149b03b1b5ae3134a58bb6baafef07888181a5 (diff) | |
download | src-31a46e2cc84d7ebfc25ce5a33e54681057e9ed9a.tar.gz src-31a46e2cc84d7ebfc25ce5a33e54681057e9ed9a.zip |
libc: Move per-arch sys/Makefile.inc to libsys
libc/<arch>/sys/Makefile.inc -> libsys/<arch>/Makefile.sys.
Require that libsys/<arch>/Makefile.sys exist. At least for current
archtiectures, it's not possible for an architecture to not have and MD
syscall bits.
powerpcspe/Makefile.sys's structure means it had to be modified when moved
so rename detection won't work, but it has trivial contents so the
history is unimportant.
Reviewed by: kib, emaste, imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/908
Diffstat (limited to 'lib/libc/amd64')
-rw-r--r-- | lib/libc/amd64/sys/Makefile.inc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/libc/amd64/sys/Makefile.inc b/lib/libc/amd64/sys/Makefile.inc deleted file mode 100644 index d4a767c90a5f..000000000000 --- a/lib/libc/amd64/sys/Makefile.inc +++ /dev/null @@ -1,7 +0,0 @@ -SRCS+= \ - amd64_get_fsbase.c \ - amd64_get_gsbase.c \ - amd64_set_fsbase.c \ - amd64_set_gsbase.c - -MDASM= vfork.S cerror.S getcontext.S |