Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
236beba0
Commit
236beba0
authored
Aug 20, 2013
by
Paul Eggert
Browse files
* Makefile.in (distclean, bootstrap-clean, maintainer-clean):
Fix shell-operator precedence problem in previous change.
parent
f47ad1af
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
6 deletions
+14
-6
ChangeLog
ChangeLog
+5
-0
Makefile.in
Makefile.in
+9
-6
No files found.
ChangeLog
View file @
236beba0
2013-08-20 Paul Eggert <eggert@cs.ucla.edu>
* Makefile.in (distclean, bootstrap-clean, maintainer-clean):
Fix shell-operator precedence problem in previous change.
2013-08-20 Glenn Morris <rgm@gnu.org>
* Makefile.in (distclean, bootstrap-clean, maintainer-clean):
...
...
Makefile.in
View file @
236beba0
...
...
@@ -859,8 +859,9 @@ distclean: FRC
(
cd
leim
;
$(MAKE)
$(MFLAGS)
distclean
)
(
cd
lisp
;
$(MAKE)
$(MFLAGS)
distclean
)
(
cd
nextstep
&&
$(MAKE)
$(MFLAGS)
distclean
)
[
!
-d
test
/automated
]
||
\
cd test
/automated
&&
$(MAKE)
$(MFLAGS)
distclean
[
!
-d
test
/automated
]
||
{
\
cd test
/automated
&&
$(MAKE)
$(MFLAGS)
distclean
;
\
}
${top_distclean}
### `bootstrap-clean'
...
...
@@ -880,8 +881,9 @@ bootstrap-clean: FRC
(
cd
leim
;
$(MAKE)
$(MFLAGS)
maintainer-clean
)
(
cd
lisp
;
$(MAKE)
$(MFLAGS)
bootstrap-clean
)
(
cd
nextstep
&&
$(MAKE)
$(MFLAGS)
maintainer-clean
)
[
!
-d
test
/automated
]
||
\
cd test
/automated
&&
$(MAKE)
$(MFLAGS)
bootstrap-clean
[
!
-d
test
/automated
]
||
{
\
cd test
/automated
&&
$(MAKE)
$(MFLAGS)
bootstrap-clean
;
\
}
[
!
-f
config.log
]
||
mv
-f
config.log config.log~
${top_bootclean}
...
...
@@ -902,8 +904,9 @@ top_maintainer_clean=\
maintainer-clean
:
bootstrap-clean FRC
(
cd
src
;
$(MAKE)
$(MFLAGS)
maintainer-clean
)
(
cd
lisp
;
$(MAKE)
$(MFLAGS)
maintainer-clean
)
[
!
-d
test
/automated
]
||
\
cd test
/automated
&&
$(MAKE)
$(MFLAGS)
maintainer-clean
[
!
-d
test
/automated
]
||
{
\
cd test
/automated
&&
$(MAKE)
$(MFLAGS)
maintainer-clean
;
\
}
${top_maintainer_clean}
### This doesn't actually appear in the coding standards, but Karl
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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