Index: Makefile =================================================================== RCS file: /Users/brian/Work/cvsroot/xwt/Makefile,v retrieving revision 1.1.1.2.2.4 diff -u -r1.1.1.2.2.4 Makefile --- Makefile 17 Aug 2003 22:34:19 -0000 1.1.1.2.2.4 +++ Makefile 17 Aug 2003 22:37:28 -0000 @@ -115,7 +115,9 @@ echo committed. propose-patch: - @echo -n "Please type a one-line description of this bug: "; \ + @echo -n "Please enter the email address you subscribed to patched with: "; \ + read E; \ + echo -n "Please type a one-line description of this bug: "; \ read A; \ echo; \ echo "Please type any additional comments that explain this patch."; \ @@ -123,10 +125,10 @@ echo "When you are done, press control-d on a new line."; \ echo; \ ( echo -e "HELO patcher"; \ - echo -e "MAIL FROM:$(USER)@xwt.org"; \ + echo -e "MAIL FROM: $$E"; \ echo -e "RCPT TO: patches@xwt.org"; \ echo -e "DATA"; \ - echo -e "From: $(USER)@xwt.org"; \ + echo -e "From: $$E"; \ echo -e "To: patches@xwt.org"; \ echo -e "Subject: proposed patch to $(this_branch): $$A"; \ echo -e ""; \