diff options
author | Khem Raj <raj.khem@gmail.com> | 2010-12-18 08:08:05 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2010-12-18 08:08:05 -0800 |
commit | f3a594f390abe7d4a3f1b544424b31613d559c88 (patch) | |
tree | 17cc127f0a6a08ac43688174d952684e2ca29fa8 /libpthread/nptl | |
parent | fc91a4155d265a189ae6aa50b63640d8da7b3609 (diff) |
nptl: If DOPIC is set then we missed a rule to generate .os variants for pt-*.c files
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'libpthread/nptl')
-rw-r--r-- | libpthread/nptl/sysdeps/pthread/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/Makefile.in b/libpthread/nptl/sysdeps/pthread/Makefile.in index 8ccf96d76..fc0c6ac3e 100644 --- a/libpthread/nptl/sysdeps/pthread/Makefile.in +++ b/libpthread/nptl/sysdeps/pthread/Makefile.in @@ -95,6 +95,10 @@ $(patsubst %,$(libpthread_pthread_OUT)/pt-%.oS,$(pthread-lc-fwd)): $(libpthread_ $(compile.c) $(patsubst %,$(libpthread_pthread_OUT)/pt-%.o,$(pthread-lc-fwd)): $(libpthread_pthread_OUT)/pt-%.o: $(libpthread_pthread_OUT)/pt-%.c $(compile.c) +ifeq ($(DOPIC),y) +$(patsubst %,$(libpthread_pthread_OUT)/pt-%.os,$(pthread-lc-fwd)): $(libpthread_pthread_OUT)/pt-%.os: $(libpthread_pthread_OUT)/pt-%.c + $(compile.c) +endif objclean-y += CLEAN_libpthread/nptl/sysdeps/pthread |