Restore subdir conditional for tst-timer dependency.
authorSiddhesh Poyarekar <siddhesh@redhat.com>
Fri, 4 Jul 2014 01:52:51 +0000 (18:52 -0700)
committerRoland McGrath <roland@hack.frob.com>
Fri, 4 Jul 2014 01:52:51 +0000 (18:52 -0700)
ChangeLog
sysdeps/pthread/Makefile

index 5eb0d43..0a8688a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-07-03  Roland McGrath  <roland@hack.frob.com>
+
+       * sysdeps/pthread/Makefile: Conditionalize tst-timer bits (the only
+       thing) with "ifeq ($(subdir),rt)".
+
 2014-07-03  Richard Henderson  <rth@redhat.com>
 
        * sysdeps/alpha/fpu/s_nearbyintf.c: Remove file.
index 1080dc9..47e61bd 100644 (file)
 # License along with the GNU C Library; if not, see
 # <http://www.gnu.org/licenses/>.
 
+ifeq ($(subdir),rt)
+
 ifeq (yes,$(build-shared))
 $(objpfx)tst-timer: $(objpfx)librt.so $(shared-thread-library)
 else
 $(objpfx)tst-timer: $(objpfx)librt.a $(static-thread-library)
 endif
+
+endif