From 79404936ce40518d9c5f58d6cd697effc061c369 Mon Sep 17 00:00:00 2001 From: "slamm%netscape.com" Date: Mon, 8 May 2000 20:51:48 +0000 Subject: [PATCH] Fix 'webconfig' target (bug 34193). --- client.mk | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/client.mk b/client.mk index 54f0995f729..ca3f6b8c472 100644 --- a/client.mk +++ b/client.mk @@ -278,20 +278,19 @@ real_checkout: #################################### # Web configure -WEBCONFIG_URL := http://webtools.mozilla.org/build/config.cgi WEBCONFIG_FILE := $(HOME)/.mozconfig -MOZCONFIG2URL := build/autoconf/mozconfig2url +MOZCONFIG2CONFIGURATOR := build/autoconf/mozconfig2configurator webconfig: - cd $(TOPSRCDIR); \ - url=$(WEBCONFIG_URL)`$(MOZCONFIG2URL) $(TOPSRCDIR)`; \ + @cd $(TOPSRCDIR); \ + url=`$(MOZCONFIG2CONFIGURATOR) $(TOPSRCDIR)`; \ echo Running netscape with the following url: ;\ echo ;\ echo $$url ;\ netscape -remote "openURL($$url)" || netscape $$url ;\ echo ;\ echo 1. Fill out the form on the browser. ;\ - echo 2. Save the results to $(WEBCONFIG_FILE). + echo 2. Save the results to $(WEBCONFIG_FILE) ##################################################### # First Checkout