Removed the NPTL check, the suite now handles the NPTL differently, by ignoring
signals 32 and 33 regardless of whether or not NPTL is used.
diff --git a/Makefile b/Makefile
index 7adb324..09d5fb2 100644
--- a/Makefile
+++ b/Makefile
@@ -26,13 +26,7 @@
 # in the commandline and in the Makefiles use a dummy variable like in
 # CFLAGS
 
-NPTL:=$(shell getconf GNU_LIBPTHREAD_VERSION 2>/dev/null| grep NPTL; echo $?)
-ifeq ($(NPTL),)
 export CFLAGS+= -Wall $(CROSS_CFLAGS)
-else
-export CFLAGS+= -Wall $(CROSS_CFLAGS) -DUSE_NPTL
-endif
-
 
 all: libltp.a 
 	@$(MAKE) -C pan $@