> I'm running mailman-2.1.9, I read the FAQ, and I followed your >directions however nothing happens. The machine just sits there until I >^C out of it. > > >wal9100# cd Mailman > >wal9100# pwd > >/usr/local/mailman/Mailman >wal9100# ls -l /usr/local/mailman/patch >total 3 >-rw-r--r-- 1 root mailman 2551 Dec 15 21:09 listinclusion.patch > >wal9100# patch -p2 /usr/local/mailman/patch/listinclusion.patch > >and nothing happens.
You're missing the '<' input redirection. It needs to be patch -p2 < /usr/local/mailman/patch/listinclusion.patch Without the '<', the patch command tries to read the patch from your keyboard. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org Security Policy: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp
