Merge pull request #101 from kinvolk/dongsu/fix-kernel-symlink-memcpy

build_library: Ignore broken symlink in Kernel source tree
This commit is contained in:
Dongsu Park 2020-11-17 13:28:08 +01:00 committed by GitHub
commit d4be1e865e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,8 @@ IGNORE_SYMLINK = (
# Other
b"/etc/lsb-release", # set later in the build process
b"/usr/share/coreos", # set later in the build process
b"/etc/coreos" # set later in the build process
b"/etc/coreos", # set later in the build process
b"/usr/src/linux-*/tools/testing/selftests/powerpc/copyloops/memcpy_mcsafe_64.S" # broken symlink in Kernel source tree
)