From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/49704 Path: main.gmane.org!not-for-mail From: Niklas Morberg Newsgroups: gmane.emacs.gnus.general Subject: No installation of .xpm smilies? Date: Wed, 29 Jan 2003 10:28:24 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1043832490 4422 80.91.224.249 (29 Jan 2003 09:28:10 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 29 Jan 2003 09:28:10 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18doVs-00019B-00 for ; Wed, 29 Jan 2003 10:28:08 +0100 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 18doWV-0005OB-00; Wed, 29 Jan 2003 03:28:47 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 29 Jan 2003 03:29:43 -0600 (CST) Original-Received: from sclp3.sclp.com (sclp3.sclp.com [66.230.238.2]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id DAA01722 for ; Wed, 29 Jan 2003 03:29:31 -0600 (CST) Original-Received: (qmail 24259 invoked by alias); 29 Jan 2003 09:28:31 -0000 Original-Received: (qmail 24254 invoked from network); 29 Jan 2003 09:28:30 -0000 Original-Received: from krynn.axis.se (193.13.178.10) by 66.230.238.6 with SMTP; 29 Jan 2003 09:28:30 -0000 Original-Received: from pcniklas.axis.se (pcniklas2.axis.se [10.13.8.90]) by krynn.axis.se (8.12.3/8.12.3/Debian -4) with ESMTP id h0T9SO2q008374 for ; Wed, 29 Jan 2003 10:28:24 +0100 Original-Received: from pcniklas.axis.se (localhost [127.0.0.1]) by pcniklas.axis.se (8.12.3/8.12.3/Debian -4) with ESMTP id h0T9SOHP008369 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=FAIL) for ; Wed, 29 Jan 2003 10:28:24 +0100 Original-Received: (from niklas@localhost) by pcniklas.axis.se (8.12.3/8.12.3/Debian -4) id h0T9SOcm008367; Wed, 29 Jan 2003 10:28:24 +0100 X-Authentication-Warning: pcniklas.axis.se: niklas set sender to niklas.morberg@axis.com using -f Original-To: ding@gnus.org User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 (i386-debian-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:49704 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:49704 --=-=-= Is there a reason that the .xpm versions of the smilies are not installed? From what little I know, it would make more sense if the makefile installed those as well. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment Content-Description: Install .xpm versions of smilies cd /home/niklas/pgnus/etc/ diff -u -b /home/niklas/pgnus/etc/Makefile.in.\~1.4.\~ /home/niklas/pgnus/etc/Makefile.in --- /home/niklas/pgnus/etc/Makefile.in.~1.4.~ Wed Jan 29 10:21:41 2003 +++ /home/niklas/pgnus/etc/Makefile.in Wed Jan 29 10:22:50 2003 @@ -30,7 +30,7 @@ done $(SHELL) $(top_srcdir)/mkinstalldirs $(etcdir)/smilies cd $(srcdir) \ - && for p in smilies/*.pbm; do \ + && for p in smilies/*.pbm smilies/*.xpm; do \ echo " $(INSTALL_DATA) $$p $(etcdir)/$$p"; \ $(INSTALL_DATA) $$p $(etcdir)/$$p; \ done @@ -43,7 +43,7 @@ done rmdir $(etcdir)/gnus 2> /dev/null || true cd $(srcdir) \ - && for p in smilies/*.pbm; do \ + && for p in smilies/*.pbm smilies/*.xpm; do \ rm -f "$(etcdir)/$$p"; \ done rmdir $(etcdir)/smilies 2> /dev/null || true Diff finished at Wed Jan 29 10:23:18 --=-=-= Niklas --=-=-=--