From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/39185 Path: main.gmane.org!not-for-mail From: Amos Gouaux Newsgroups: gmane.emacs.gnus.general Subject: test Date: Sun, 07 Oct 2001 10:34:25 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035174932 26542 80.91.224.250 (21 Oct 2002 04:35:32 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 04:35:32 +0000 (UTC) Return-Path: Original-Received: (qmail 9463 invoked from network); 7 Oct 2001 15:37:41 -0000 Original-Received: from malifon.math.uh.edu (mail@129.7.128.13) by mastaler.com with SMTP; 7 Oct 2001 15:37:41 -0000 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 15qFxe-0006Qv-00; Sun, 07 Oct 2001 10:35:26 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 07 Oct 2001 10:35:03 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id KAA16484 for ; Sun, 7 Oct 2001 10:34:46 -0500 (CDT) Original-Received: (qmail 9353 invoked by alias); 7 Oct 2001 15:34:59 -0000 Original-Received: (qmail 9348 invoked from network); 7 Oct 2001 15:34:59 -0000 Original-Received: from ns0.utdallas.edu (129.110.10.1) by gnus.org with SMTP; 7 Oct 2001 15:34:59 -0000 Original-Received: from spartacus.utdallas.edu (spartacus.utdallas.edu [129.110.3.11]) by ns0.utdallas.edu (Postfix) with ESMTP id 146D31A0596 for ; Sun, 7 Oct 2001 10:34:53 -0500 (CDT) Original-To: ding@gnus.org Original-Lines: 27 User-Agent: Gnus/5.090004 (Oort Gnus v0.04) XEmacs/21.4 (Artificial Intelligence) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:39185 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:39185 Might I suggest the following alteration: *** lisp/Makefile.in.orig Sun Oct 7 10:31:47 2001 --- lisp/Makefile.in Sun Oct 7 10:31:57 2001 *************** *** 37,43 **** $(INSTALL_DATA) gnus-load.el $(lispdir)/gnus-load.el for p in *.elc; do \ p=`basename $$p c`; \ ! if [ -e "$(srcdir)/$$p" ]; then \ echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \ $(INSTALL_DATA) $(srcdir)/$$p $(lispdir)/$$p; \ fi; \ --- 37,43 ---- $(INSTALL_DATA) gnus-load.el $(lispdir)/gnus-load.el for p in *.elc; do \ p=`basename $$p c`; \ ! if [ -f "$(srcdir)/$$p" ]; then \ echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \ $(INSTALL_DATA) $(srcdir)/$$p $(lispdir)/$$p; \ fi; \ I believe the -e will only work with ksh/bash systems, not with systems that use sh with make. Perhaps -f would be more general? -- Amos