mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 10:04:32 +03:00
Makefile.in: correctly detect make failures in subdirs
This commit is contained in:
parent
bb1eb746aa
commit
b210364eea
@ -1,3 +1,7 @@
|
|||||||
|
2000-08-08 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* Makefile.in: correctly detect make failures in subdirs
|
||||||
|
|
||||||
2000-08-01 Pavel Roskin <proski@gnu.org>
|
2000-08-01 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
* nt, os2, tk, xv: removed all files
|
* nt, os2, tk, xv: removed all files
|
||||||
|
@ -24,7 +24,7 @@ DISTMAIN = configure configure.in NEWS README INSTALL INSTALL.FAST \
|
|||||||
|
|
||||||
all:
|
all:
|
||||||
@for dir in @INTLSUB@ ${codedirs} @POSUB@; do \
|
@for dir in @INTLSUB@ ${codedirs} @POSUB@; do \
|
||||||
(cd $$dir; ${MAKE} all || exit 1); \
|
(cd $$dir; ${MAKE} all) || exit 1; \
|
||||||
done
|
done
|
||||||
|
|
||||||
static:
|
static:
|
||||||
|
Loading…
Reference in New Issue
Block a user