02a57750d003fe08e6075b904e0fc8e3abf90b99
kate
  Wed Jan 9 11:40:36 2013 -0800
Make common.mk consistent with policy of not stripping binaries by default (Mark D. recommendation, on advisement from Hiram). This takes care of all those directories that haven't had strip removed or commented out of makefiles (e.g. tools)
diff --git src/inc/common.mk src/inc/common.mk
index 05e3880..3942ec9 100644
--- src/inc/common.mk
+++ src/inc/common.mk
@@ -152,31 +152,31 @@
 ifeq (${CGI_BIN},)
     CGI_BIN=/usr/local/apache/cgi-bin
 endif
 ifeq (${DOCUMENTROOT},)
     DOCUMENTROOT=/usr/local/apache/htdocs
 endif
 ifeq (${BINDIR},)
     BINDIR = ${HOME}/bin/${MACHTYPE}
 endif
 ifeq (${ENCODE_PIPELINE_BIN},)
     ENCODE_PIPELINE_BIN=/cluster/data/encode/pipeline/bin
 endif
 
 MKDIR=mkdir -p
 ifeq (${STRIP},)
-   STRIP=strip
+   STRIP=echo
 endif
 CVS=cvs
 GIT=git
 
 # portable naming of compiled executables: add ".exe" if compiled on 
 # Windows (with cygwin).
 ifeq (${OS}, Windows_NT)
   AOUT=a
   EXE=.exe
 else
   AOUT=a.out
   EXE=
 endif
 
 # location of stringify program