Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
lyskom-elisp-client
lyskom-elisp-client
Commits
f371ca4f
Commit
f371ca4f
authored
Dec 06, 2000
by
Joel Rosdahl
Browse files
Fixat problem med configure/stderr/autoconf.el.
parent
c7e8fd1f
Changes
4
Hide whitespace changes
Inline
Side-by-side
doc/NEWS-0.46.1
View file @
f371ca4f
...
...
@@ -126,3 +126,5 @@
** Den engelska versionens tangentbindningar är korrigerade.
** En del strängar har rättats.
** configure-scriptet fungerar bättre för pratiga Emacsar.
src/ChangeLog
View file @
f371ca4f
2000-12-06 Joel Rosdahl <joel@rosdahl.net>
* distribution-configure.in: Ignore stderr output from Emacs.
* autoconf.el (extract-autoconf-data): Print autoconf data to
stdout.
2000-12-03 Per Cederqvist <ceder@moria>
* macros.el (blocking-do-multiple): Fixed typo in docstring.
...
...
src/autoconf.el
View file @
f371ca4f
...
...
@@ -44,8 +44,8 @@
(
infodir
(
extract-configuration-option
"--infodir"
))
(
lispdir
(
extract-site-lisp-dir
))
(
version
(
format
"%S.%S"
emacs-major-version
emacs-minor-version
)))
(
and
prefix
(
message
"xprefix=%s"
prefix
))
(
and
datadir
(
message
"xdatadir=%s"
datadir
))
(
and
infodir
(
message
"xinfodir=%s"
infodir
))
(
and
lispdir
(
message
"xlispdir=%s"
lispdir
))
(
and
version
(
message
"xversion=%s"
version
))))
(
and
prefix
(
princ
(
format
"xprefix=%s
\n
"
prefix
)
standard-output
)
)
(
and
datadir
(
princ
(
format
"xdatadir=%s
\n
"
datadir
)
standard-output
)
)
(
and
infodir
(
princ
(
format
"xinfodir=%s
\n
"
infodir
)
standard-output
)
)
(
and
lispdir
(
princ
(
format
"xlispdir=%s
\n
"
lispdir
)
standard-output
)
)
(
and
version
(
princ
(
format
"xversion=%s
\n
"
version
)
standard-output
)
)))
src/distribution-configure.in
View file @
f371ca4f
...
...
@@ -46,7 +46,7 @@ The default language must be one of \`swedish' or \`english'.]);
if test -z "${lispdir}"
then
eval `${emacs} -batch -l ./autoconf.el -f extract-autoconf-data 2>
&1
`
eval `${emacs} -batch -l ./autoconf.el -f extract-autoconf-data 2>
/dev/null
`
if test -z "${xlispdir}"
then
AC_MSG_ERROR([No Lisp directory was found or specified with --with-lispdir.])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment