82dee17afb6a1bcbca19e301d15b1a9cc69ef829 markd Mon Apr 15 21:43:46 2024 -0700 don't allow htdocs make FIND=find on hgwbeta RM 33444 diff --git src/hg/htdocs/makefile src/hg/htdocs/makefile index 4e55b16..c17fe25 100644 --- src/hg/htdocs/makefile +++ src/hg/htdocs/makefile @@ -1,29 +1,32 @@ kentSrc = ../.. include ../../inc/common.mk GIT = git GITUP = ${GIT} pull ifeq (${FIND},) INSIDEGIT := $(shell git rev-parse --is-inside-work-tree 2>/dev/null) ifeq (${INSIDEGIT},true) FIND = gitFiles else FIND = find endif endif +ifeq (${HOSTNAME}_${FIND},hgwbeta_find) + $(error FIND=find not allowed on hgwbeta) +endif # if you need to pick up files not checked-in yet for rsync, # you can run it like this: # # make FIND=find # # but be careful as it will rsync everything over including junk # REMEMBER: HTDOCSEXTRA # htdocsExtra is a repository that contains large files that we # do not wish to burden the main kent repo with. # You can check it out and make there too. # If you think there is a file missing, see if it is under the htdocsExtra repo. ifeq (${DOCUMENTROOT_USER},)