Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
ef898549
Commit
ef898549
authored
Jun 09, 2000
by
Kurt Zeilenga
Browse files
ITS
#576
: cause subdir make failure to halt subsequent making
parent
70a7656d
Changes
2
Hide whitespace changes
Inline
Side-by-side
build/dir.mk
View file @
ef898549
...
...
@@ -13,6 +13,7 @@ all-common: FORCE
@
for
i
in
$(SUBDIRS)
$(ALLDIRS)
;
do
\
echo
" Entering subdirectory
$$
i"
;
\
(
cd
$$
i
;
$(MAKE)
$(MFLAGS)
all
)
;
\
if
test
$$
?
!=
0
;
then
exit
1
;
fi
;
\
echo
" "
;
\
done
...
...
@@ -21,6 +22,7 @@ install-common: FORCE
@
for
i
in
$(SUBDIRS)
$(INSTALLDIRS)
;
do
\
echo
" Entering subdirectory
$$
i"
;
\
(
cd
$$
i
;
$(MAKE)
$(MFLAGS)
install
)
;
\
if
test
$$
?
!=
0
;
then
exit
1
;
fi
;
\
echo
" "
;
\
done
...
...
@@ -29,6 +31,7 @@ clean-common: FORCE
@
for
i
in
$(SUBDIRS)
$(CLEANDIRS)
;
do
\
echo
" Entering subdirectory
$$
i"
;
\
(
cd
$$
i
;
$(MAKE)
$(MFLAGS)
clean
)
;
\
if
test
$$
?
!=
0
;
then
exit
1
;
fi
;
\
echo
" "
;
\
done
...
...
@@ -37,6 +40,7 @@ veryclean-common: FORCE
@
for
i
in
$(SUBDIRS)
$(CLEANDIRS)
;
do
\
echo
" Entering subdirectory
$$
i"
;
\
(
cd
$$
i
;
$(MAKE)
$(MFLAGS)
veryclean
)
;
\
if
test
$$
?
!=
0
;
then
exit
1
;
fi
;
\
echo
" "
;
\
done
...
...
@@ -45,6 +49,7 @@ depend-common: FORCE
@
for
i
in
$(SUBDIRS)
$(DEPENDDIRS)
;
do
\
echo
" Entering subdirectory
$$
i"
;
\
(
cd
$$
i
;
$(MAKE)
$(MFLAGS)
depend
)
;
\
if
test
$$
?
!=
0
;
then
exit
1
;
fi
;
\
echo
" "
;
\
done
...
...
servers/slapd/Makefile.in
View file @
ef898549
...
...
@@ -163,6 +163,7 @@ sslapd: version.o
if
[
-d
$$
i
]
;
then
\
echo
" "
;
echo
" cd
$$
i;
$(MAKE)
$(MFLAGS)
all"
;
\
(
cd
$$
i
;
$(MAKE)
$(MFLAGS)
all
)
;
\
if
test
$$
?
!=
0
;
then
exit
1
;
fi
;
\
fi
;
\
done
;
\
echo
" "
...
...
@@ -199,6 +200,7 @@ depend-local-srv: FORCE
if
[
-d
$$
i
]
;
then
\
echo
;
echo
" cd
$$
i;
$(MAKE)
$(MFLAGS)
depend"
;
\
(
cd
$$
i
;
$(MAKE)
$(MFLAGS)
depend
)
;
\
if
test
$$
?
!=
0
;
then
exit
1
;
fi
;
\
fi
;
\
done
@
echo
""
...
...
@@ -211,6 +213,7 @@ clean-local-srv: FORCE
if
[
-d
$$
i
]
;
then
\
echo
;
echo
" cd
$$
i;
$(MAKE)
$(MFLAGS)
clean"
;
\
(
cd
$$
i
;
$(MAKE)
$(MFLAGS)
clean
)
;
\
if
test
$$
?
!=
0
;
then
exit
1
;
fi
;
\
fi
;
\
done
rm
-f
*
.tmp all-cffiles
...
...
@@ -235,6 +238,7 @@ install-slapd: FORCE
if
[
-d
$$
i
]
;
then
\
echo
;
echo
" cd
$$
i;
$(MAKE)
$(MFLAGS)
install"
;
\
(
cd
$$
i
;
$(MAKE)
$(MFLAGS)
install
)
;
\
if
test
$$
?
!=
0
;
then
exit
1
;
fi
;
\
fi
;
\
done
;
\
fi
...
...
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