diff options
Diffstat (limited to 'main/libdrm/fix-kms-symbol-check.patch')
-rw-r--r-- | main/libdrm/fix-kms-symbol-check.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/main/libdrm/fix-kms-symbol-check.patch b/main/libdrm/fix-kms-symbol-check.patch deleted file mode 100644 index 6e888a3195..0000000000 --- a/main/libdrm/fix-kms-symbol-check.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff --git a/libkms/kms-symbol-check b/libkms/kms-symbol-check -index 658b269..0885282 100755 ---- a/libkms/kms-symbol-check -+++ b/libkms/kms-symbol-check -@@ -3,11 +3,8 @@ - # The following symbols (past the first five) are taken from the public headers. - # A list of the latter should be available Makefile.sources/LIBKMS_H_FILES - --FUNCS=$(nm -D --format=bsd --defined-only ${1-.libs/libkms.so} | awk '{print $3}'| while read func; do -+FUNCS=$(nm -D --format=bsd --defined-only ${1-.libs/libkms.so} | awk '$2 == "T" {print $3}'| while read func; do - ( grep -q "^$func$" || echo $func ) <<EOF --__bss_start --_edata --_end - _fini - _init - kms_bo_create |