summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2023-05-08 11:46:01 +0200
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2023-05-08 11:50:59 +0200
commitc7f7036094bf9c48fdfa803085857a35753e938f (patch)
tree7d484ef1c62dc5af12a9ed8d7bb07e8dbfc98d9f
parent2ca3162070b501b5bcb14da72a271060cdd35758 (diff)
downloadlibpcap-c7f7036094bf9c48fdfa803085857a35753e938f.tar.gz
Makefile.in: Build libpcap before the testprogs in releasecheck target
This should avoid, with autotools, when doing parallel builds: make[2]: *** No rule to make target '../libpcap.a', needed by 'valgrindtest'. Stop.
-rw-r--r--Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 182aaa5e..ddc01049 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -865,8 +865,10 @@ releasecheck: releasetar
touch .devel && \
echo "[$@] $$ ./configure --enable-remote --quiet --prefix=$$INSTALL_DIR" && \
./configure --enable-remote --quiet --prefix="$$INSTALL_DIR" && \
- echo '[$@] $$ $(MAKE) -s all testprogs' && \
- $(MAKE) -s all testprogs && \
+ echo '[$@] $$ $(MAKE) -s all' && \
+ $(MAKE) -s all && \
+ echo '[$@] $$ $(MAKE) -s testprogs' && \
+ $(MAKE) -s testprogs && \
echo '[$@] $$ $(MAKE) -s install' && \
$(MAKE) -s install && \
cd .. && \