7727c24e06341a267e7561409f7bf7a3293d88ab
max
  Fri Jun 2 11:54:51 2017 -0700
changes after code review, refs #19510

diff --git src/hg/pyLib/makefile src/hg/pyLib/makefile
index 8fe4a89..a71d46b 100644
--- src/hg/pyLib/makefile
+++ src/hg/pyLib/makefile
@@ -7,51 +7,43 @@
 ifeq (${CGI_BIN_USER},)
     CGI_BIN_USER=${CGI_BIN}-${USER}
 endif
 
 ifeq (${CGI_BIN_BETA},)
     CGI_BIN_ALPHA=${CGI_BIN}-beta
 endif
 
 my:: compile 
 	mkdir -p ${CGI_BIN_USER}/pyLib/
 	rm -f ${CGI_BIN_USER}/pyLib/hgLib.{py,pyc,pyo}
 	cp -p hgLib.py ${CGI_BIN_USER}/pyLib/hgLib.py
 	cp -p hgLib.pyo ${CGI_BIN_USER}/pyLib/hgLib.pyo
 	
 	mkdir -p ${CGI_BIN_USER}/pyLib/MySQLdb
-	#cp -R `python2.7 -c 'import MySQLdb, os.path; print os.path.dirname(MySQLdb.__file__)'`/* ${CGI_BIN_USER}/pyLib/MySQLdb/
 
 beta:: compile
 	mkdir -p ${CGI_BIN_BETA}/pyLib/
 	rm -f ${CGI_BIN_BETA}/pyLib/hgLib.{py,pyc,pyo}
 	cp -p hgLib.py ${CGI_BIN_BETA}/pyLib/hgLib.py
 	cp -p hgLib.pyo ${CGI_BIN_BETA}/pyLib/hgLib.pyo
 	
 	mkdir -p ${CGI_BIN_BETA}/pyLib/MySQLdb
-	#cp -R `python2.7 -c 'import MySQLdb, os.path; print os.path.dirname(MySQLdb.__file__)'`/* ${CGI_BIN_BETA}/pyLib/MySQLdb/
 
 alpha:: compile
 	mkdir -p ${CGI_BIN}/pyLib/
 	rm -f ${CGI_BIN}/pyLib/hgLib.{py,pyc,pyo}
 	cp -p hgLib.py ${CGI_BIN}/pyLib/hgLib.py
 	cp -p hgLib.pyo ${CGI_BIN}/pyLib/hgLib.pyo
 	
 	mkdir -p ${CGI_BIN}/pyLib/MySQLdb
-	#cp -R `python2.7 -c 'import MySQLdb, os.path; print os.path.dirname(MySQLdb.__file__)'`/* ${CGI_BIN}/pyLib/MySQLdb/
 
 compile:
 	# byte-compile and strip all python source code to .pyo files
 	python2.7 -OO -m compileall ./
 
 clean::
 	rm -f *.pyc *.pyo
 
-	# ? clean up the CGI-BIN directory, remove the MysqlDb library ?
-	#rm -f ${CGI_BIN}/pyLib/MySQLdb/*
-	#rm -f ${CGI_BIN}/pyLib/MySQLdb/constants/*
-	#rmdir ${CGI_BIN}/pyLib/MySQLdb/constants ${CGI_BIN}/pyLib/MySQLdb/
-
 lint::
 	pylint -E hgLib.py
 
 install::