diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-07-14 20:00:52 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-07-14 20:00:52 +0200 |
commit | 3199c47d7077410fe837f096de8ed70bdcf3e56d (patch) | |
tree | 010243033ff69ebd582d3df1595020860166db7b /libpthread/nptl/sysdeps/pthread | |
parent | ecc762828cd06189eec73713731788f97b4bb891 (diff) |
nptl: remove superfluous =1 from defines
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread')
-rw-r--r-- | libpthread/nptl/sysdeps/pthread/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/Makefile.in b/libpthread/nptl/sysdeps/pthread/Makefile.in index 030a2b681..8ccf96d76 100644 --- a/libpthread/nptl/sysdeps/pthread/Makefile.in +++ b/libpthread/nptl/sysdeps/pthread/Makefile.in @@ -37,7 +37,7 @@ libpthread_pthread_CSRC = \ pt-sigfillset.c \ pt-sigprocmask.c \ tpp.c -CFLAGS-pthread = $(SSP_ALL_CFLAGS) -DNOT_IN_libc=1 -DIS_IN_libpthread=1 +CFLAGS-pthread = $(SSP_ALL_CFLAGS) -DNOT_IN_libc -DIS_IN_libpthread CFLAGS-pthread_barrier_wait.c = -D_GNU_SOURCE CFLAGS-pthread_spin_destroy.c = -D_GNU_SOURCE CFLAGS-pthread_spin_init.c = -D_GNU_SOURCE @@ -48,11 +48,11 @@ CFLAGS-pt-sigfillset.c = -I$(top_srcdir)libc/signal CFLAGS-pt-sigprocmask.c = -I$(top_srcdir)libc/sysdeps/linux/common CFLAGS-unwind-forcedunwind.c = -fexceptions -fasynchronous-unwind-tables -CFLAGS-OMIT-librt-cancellation.c = -DIS_IN_libpthread=1 -CFLAGS-OMIT-rt-unwind-resume.c = -DIS_IN_libpthread=1 -CFLAGS-librt-cancellation.c = -DIS_IN_librt=1 \ +CFLAGS-OMIT-librt-cancellation.c = -DIS_IN_libpthread +CFLAGS-OMIT-rt-unwind-resume.c = -DIS_IN_libpthread +CFLAGS-librt-cancellation.c = -DIS_IN_librt \ -fexceptions -fasynchronous-unwind-tables -CFLAGS-rt-unwind-resume.c = -DIS_IN_librt=1 \ +CFLAGS-rt-unwind-resume.c = -DIS_IN_librt \ -fexceptions -fasynchronous-unwind-tables libpthread-so-y += $(patsubst %,$(libpthread_pthread_OUT)/%.oS, \ |