diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-07-21 20:28:58 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-07-21 20:28:58 +0000 |
commit | 79b9c943d3a8ea8e5c83e4df47fa40ad86f9207c (patch) | |
tree | 5022cffc3e8000a76b833277e3c80364256e52f6 /libpthread | |
parent | 7247787b5029fc53a58751ca299b92a7cd96537a (diff) |
Doing an search and replace on CFLAGS can prove dangerous. We don't
do -O0 by default anyways, so leave this disabled for now.
Diffstat (limited to 'libpthread')
-rw-r--r-- | libpthread/linuxthreads/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/Makefile b/libpthread/linuxthreads/Makefile index 3a868095e..748776e71 100644 --- a/libpthread/linuxthreads/Makefile +++ b/libpthread/linuxthreads/Makefile @@ -28,7 +28,7 @@ else SYSDEPS_DIR:=$(TARGET_ARCH) endif #This stuff will not compile without at least -O1 -CFLAGS := $(subst -O0,-O1,$(CFLAGS)) +#CFLAGS := $(subst -O0,-O1,$(CFLAGS)) # set up system dependencies include dirs (NOTE: order matters!) PTDIR = $(TOPDIR)libpthread/linuxthreads/ |