adad79ea098c61819a1d1c031b5e8f3e494bc6da jcasper Tue Dec 30 17:39:48 2014 -0800 Suppressing 'no config file' warning from pylint, refs #14393 diff --git src/hg/hgBeacon/makefile src/hg/hgBeacon/makefile index dd1a356..aef6e66 100644 --- src/hg/hgBeacon/makefile +++ src/hg/hgBeacon/makefile @@ -2,35 +2,35 @@ #cannot use common include rules, don't know how to overwrite :: targets #include ../../inc/cgi_build_rules.mk ifeq (${CGI_BIN_USER},) CGI_BIN_USER=${CGI_BIN}-${USER} endif ifeq (${CGI_BIN_BETA},) CGI_BIN_BETA=${CGI_BIN}-beta endif PATH:=$(PATH):/cluster/software/bin my:: - pylint -E hgBeacon + pylint -E --rcfile=pylint.rc hgBeacon rm -f ${CGI_BIN_USER}/hgBeacon mkdir -p ${CGI_BIN_USER}/beacon2 ln -sf ${CGI_BIN_USER}/hgBeacon ${CGI_BIN_USER}/beacon2/info ln -sf ${CGI_BIN_USER}/hgBeacon ${CGI_BIN_USER}/beacon2/query cp -p hgBeacon ${CGI_BIN_USER}/ beta:: - pylint -E hgBeacon + pylint -E --rcfile=pylint.rc hgBeacon rm -f ${CGI_BIN_BETA}/hgBeacon cp -p hgBeacon ${CGI_BIN_BETA}/ alpha:: - pylint -E hgBeacon + pylint -E --rcfile=pylint.rc hgBeacon rm -f ${CGI_BIN}/hgBeacon cp -p hgBeacon ${CGI_BIN}/ clean:: compile:: install::