From a14180129ecc77ed2124e48e467dae2ce9f1d8b0 Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab Date: Sun, 30 Jul 2006 16:40:32 -0300 Subject: Make push will push at the dir specified on .hg/hgrc From: Mauro Carvalho Chehab If you specify a push directory on .hg/hgrc as default-push, this will be used to push patches to the repository. The old behaviour were an heritage from the first hg approach, where all people were pushing at just one master. Signed-off-by: Mauro Carvalho Chehab --- Makefile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 9d6f7c3e7..f0101af9a 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,6 @@ BUILD_DIR := $(shell pwd)/v4l TMP ?= /tmp REPO_PULL := http://linuxtv.org/hg/v4l-dvb -ifeq ($(REPO_PUSH),) - ifneq ($(CHANGE_LOG_LOGIN),) - REPO_PUSH := ssh://$(CHANGE_LOG_LOGIN)@linuxtv.org/hg/v4l-dvb - else - REPO_PUSH := ssh://linuxtv.org/hg/v4l-dvb - endif -endif ifeq ($(EDITOR),) ifeq ($(VISUAL),) @@ -40,8 +33,8 @@ pull update v4l-update:: -hg pull -u $(REPO_PULL) push:: - @echo "Pushing changes to master repository $(REPO_PUSH)" - -hg push $(REPO_PUSH) + @echo "Pushing changes to master repository" + -hg push whitespace: @echo "Cleaning bad whitespaces" -- cgit v1.2.3