summaryrefslogtreecommitdiff
path: root/configure1.in
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-05-15 22:57:27 +0000
committerJim Blandy <jimb@redhat.com>1993-05-15 22:57:27 +0000
commit3ca98059a4f069bb3efcba85fe368bda5da4458d (patch)
tree7e1de0ecc872f73cee4a739b0f10d5a1df2eb386 /configure1.in
parent25cfcbb0157787cc32dd5ad09bcebe9d5d5c2155 (diff)
downloademacs-3ca98059a4f069bb3efcba85fe368bda5da4458d.tar.gz
Install ${srcdir} changes from DJM.
* Makefile.in (SUBDIR_MAKEFILES): Add oldXMenu/Makefile to this list. (COPYDIR, COPYDESTS): Install files from both the etc directory in the source tree and the etc directory in the object tree. (${SUBDIR}): Pass the prefix variable down to submakes. (everywhere): Use `sed', not `/bin/sed'. Not all systems have sed in /bin. (lib-src/Makefile, src/Makefile, oldXMenu/Makefile): Edit in values for srcdir and VPATH. (install): Add `v' flag to tar command. Make sure that `dir' exists in ${srcdir}/info before copying it. Remember that the man pages come from the source tree, not the object tree. * configure.in: Remove remarks saying that the --srcdir option doesn't work. Create the etc directory in the object tree. Recognize configuration names of the form *-sun-solaris*. Recognize sunos5 and solaris as operating system names.
Diffstat (limited to 'configure1.in')
-rwxr-xr-xconfigure1.in11
1 files changed, 6 insertions, 5 deletions
diff --git a/configure1.in b/configure1.in
index eaf3aec1326..e4b93d02d1c 100755
--- a/configure1.in
+++ b/configure1.in
@@ -102,7 +102,7 @@ The --run-in-place option sets up default values for the path
The --srcdir=DIR option specifies that the configuration and build
processes should look for the Emacs source code in DIR, when
- DIR is not the current directory. This option doesn't work yet.
+ DIR is not the current directory.
If successful, ${progname} leaves its status in config.status. If
unsuccessful after disturbing the status quo, it removes config.status."
@@ -196,8 +196,6 @@ Set it to either \`yes' or \`no'."
shift; val="$1"
fi
srcdir="${val}"
-
- echo "${progname}: Beware - the \`--srcdir' option doesn't work yet." >&2
;;
## Has the user tried to tell us where the X files are?
@@ -320,7 +318,9 @@ fi
if [ ! -d ./oldXMenu ]; then
mkdir ./oldXMenu
fi
-
+if [ ! -d ./etc ]; then
+ mkdir ./etc
+fi
#### Given the configuration name, set machfile and opsysfile to the
#### names of the m/*.h and s/*.h files we should use.
@@ -678,7 +678,7 @@ case "${configuration}" in
;;
## Suns
- *-sun-sunos* | *-sun-bsd* )
+ *-sun-sunos* | *-sun-bsd* | *-sun-solaris* )
case "${configuration}" in
m68*-sunos1* ) machine=sun1 ;;
m68*-sunos2* ) machine=sun2 ;;
@@ -690,6 +690,7 @@ case "${configuration}" in
case "${configuration}" in
*-sunos4.0* ) opsys=sunos4-0 ;;
*-sunos4* | *-sunos ) opsys=sunos4-1 ;;
+ *-sunos5* | *-solaris* ) opsys=sol2 ;;
* ) opsys=bsd4-2 ;;
esac
;;