unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Richard Stallman <rms@gnu.org>
Cc: emacs-devel@gnu.org, kst@cts.com
Subject: Re: PWD problem in emacs-21.1 configure
Date: Tue, 26 Feb 2002 22:50:51 -0700 (MST)	[thread overview]
Message-ID: <200202270550.g1R5opW17599@aztec.santafe.edu> (raw)
In-Reply-To: <20020226141451.A35087@king.cts.com> (message from Keith Thompson on Tue, 26 Feb 2002 14:14:51 -0800)

I can't see what motivated the change from `pwd` to ${PWD},
so I changed that back, and added more explanation in case
we encounter some other problem with this method.

Does this change make it work again?

Index: configure.in
===================================================================
RCS file: /cvsroot/emacs/emacs/configure.in,v
retrieving revision 1.284
retrieving revision 1.285
diff -c -c -r1.284 -r1.285
*** configure.in	27 Jan 2002 10:03:14 -0000	1.284
--- configure.in	27 Feb 2002 03:53:03 -0000	1.285
***************
*** 114,120 ****
    . )
      ## We may be able to use the $PWD environment variable to make this
      ## absolute.  But sometimes PWD is inaccurate.
!     if test ".${PWD}" != "." && test ".`(cd ${PWD} ; sh -c pwd)`" = ".${PWD}"  ;
      then
        srcdir="$PWD"
      else
--- 114,123 ----
    . )
      ## We may be able to use the $PWD environment variable to make this
      ## absolute.  But sometimes PWD is inaccurate.
!     ## Note: we used to use ${PWD} at the end instead of `pwd`,
!     ## but that tested only for a well-formed and valid PWD,
!     ## it did not object when PWD was well-formed and valid but just wrong.
!     if test ".${PWD}" != "." && test ".`(cd ${PWD} ; sh -c pwd)`" = ".`pwd`"  ;
      then
        srcdir="$PWD"
      else
***************
*** 354,359 ****
--- 357,367 ----
      ## We'll use the catch-all code at the bottom to guess the
      ## operating system.
    ;;
+ 
+   ## Compaq Nonstop
+   mips-compaq-nonstopux* )
+     machine=nonstopux opsys=nonstopux
+     ;;
  
    ## Convex
    *-convex-bsd* | *-convex-convexos* )

_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/emacs-devel


       reply	other threads:[~2002-02-27  5:50 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20020226141451.A35087@king.cts.com>
2002-02-27  5:50 ` Richard Stallman [this message]
2002-02-27 12:35   ` PWD problem in emacs-21.1 configure Keith Thompson
2002-02-28  4:08     ` Richard Stallman

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=200202270550.g1R5opW17599@aztec.santafe.edu \
    --to=rms@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=kst@cts.com \
    /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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).