all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Vin Shelton <acs@xemacs.org>
Cc: Vin Shelton <acs@xemacs.org>
Subject: Cannot Generate loaddefs.el on Solaris
Date: Mon, 22 Sep 2003 11:02:06 -0400	[thread overview]
Message-ID: <545y8wg27f5.fsf@icd.teradyne.com> (raw)
In-Reply-To: <545adbgj6wg.fsf@icd.teradyne.com> (Vin Shelton's message of "Tue, 15 Jul 2003 08:45:03 -0400")

/bin/sh on Solaris has stricter syntax wrt the 'test' command than
bash does.  The !  (negation) operator cannot appear before the 'test'
command.  Without the attached patch, I cannot build the latest CVS
sources on Solaris (either 5.5.1 or 5.8) because loaddefs.el does not
get created properly.

Index: lisp/ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.5400
diff -u -U0 -r1.5400 ChangeLog
--- lisp/ChangeLog	22 Sep 2003 12:37:00 -0000	1.5400
+++ lisp/ChangeLog	22 Sep 2003 13:26:40 -0000
@@ -0,0 +1,4 @@
+2003-09-22  Vin Shelton  <acs@xemacs.org>
+
+	* Makefile.in: On Solaris sh, ! must be inside args to test.
+
Index: lisp/Makefile.in
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/Makefile.in,v
retrieving revision 1.45
diff -u -u -r1.45 Makefile.in
--- lisp/Makefile.in	15 Sep 2003 05:36:56 -0000	1.45
+++ lisp/Makefile.in	22 Sep 2003 13:26:57 -0000
@@ -292,7 +292,7 @@
 	if test -x $(EMACS); then				\
 	  $(MAKE) $(MFLAGS) autoloads;				\
 	else							\
-	  if ! test -r $(lisp)/loaddefs.el; then		\
+	  if test ! -r $(lisp)/loaddefs.el; then		\
 	    cp $(lisp)/loaddefs-boot.el $(lisp)/loaddefs.el;	\
 	  fi							\
 	fi

HTH,
  Vin Shelton

-- 
In a minute there is time
For decisions and revisions which a minute will reverse.         T.S. Eliot
[URL: http://www.cs.amherst.edu/~ccm/prufrock.html]

  reply	other threads:[~2003-09-22 15:02 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-07-15 12:45 Build Failure with Latest CVS sources Vin Shelton
2003-09-22 15:02 ` Vin Shelton [this message]
2003-09-22 23:34   ` Cannot Generate loaddefs.el on Solaris Miles Bader
2003-09-23  1:14     ` Vin Shelton
2003-09-23  1:31       ` Miles Bader

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=545y8wg27f5.fsf@icd.teradyne.com \
    --to=acs@xemacs.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.