54e53b0cd76a55b775becae89628730a34f8bf2b
angie
  Mon Mar 10 09:50:10 2014 -0700
hgSession/makefile had an override of HG_WARN that prevented compilewarning from halting the build -- oops!

diff --git src/hg/hgSession/makefile src/hg/hgSession/makefile
index f46e50f..4d2f9fb 100644
--- src/hg/hgSession/makefile
+++ src/hg/hgSession/makefile
@@ -1,17 +1,15 @@
 include ../../inc/common.mk
 
-HG_WARN=-Wall
-
 L += -lm ${MYSQLLIBS}
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 A = hgSession
 
 O = $A.o
 
 include ../../inc/cgi_build_rules.mk
 
 compile: $O 
 	${CC} -o $A${EXE} -g $O ${MYLIBS} ${L}