diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-29 21:08:21 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-29 21:08:21 -0700 |
commit | 1a3e71767c835c1ae9367e235bbaac2db59fee91 (patch) | |
tree | c96a84d87ff3b638a85de06860f5efda2e38bdff /Makefile | |
parent | 9d89d19c4873f73f3165e1cef45fdb17ef39a5d0 (diff) | |
download | git-1a3e71767c835c1ae9367e235bbaac2db59fee91.tar.gz git-1a3e71767c835c1ae9367e235bbaac2db59fee91.tar.xz |
Turn on optimization again
It got turned off by mistake just because I had been doing debugging,
and committed the Makefile that had other changes ...
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ # BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly # break unless your underlying filesystem supports those sub-second times # (my ext3 doesn't). -COPTS= +COPTS=-O2 CFLAGS=-g $(COPTS) -Wall prefix=$(HOME) |