Browse Source

qt: fix typo in webkit pthread_getattr_np patch

Missing continuation (\) character in #if check.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard 14 years ago
parent
commit
36f8b40d22
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/qt/qt-4.7.3-pthread_getattr_np_webkit.patch

+ 1 - 1
package/qt/qt-4.7.3-pthread_getattr_np_webkit.patch

@@ -9,7 +9,7 @@
 +// pthread_getattr_np or pthread_attr_getstack.
 +#if __UCLIBC_MAJOR__ == 0 && \
 +    (__UCLIBC_MINOR__ < 9 || \
-+    (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ <= 32)) &&
++    (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ <= 32)) && \
 +    defined(__LINUXTHREADS_OLD__)
 +#define UCLIBC_USE_PROC_SELF_MAPS 1
 +#include <stdio_ext.h>