summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2000-09-01 14:17:39 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2000-09-01 14:17:39 +0000
commitb87fa3f10aa4a16f99a07bbe537981d9cccbd1ff (patch)
treec89018b545dd1c5bde59337b554159b285c53389
parent67689dad74ea00d085474fd77362ae33e1b9a6f2 (diff)
downloadlibapr-b87fa3f10aa4a16f99a07bbe537981d9cccbd1ff.tar.gz
Current implementation of lib/apr/Makefile.in causes rebuilding
libapr.a at "make install" stage even if libapr.a is up to date after "make all" stage. It seems this patch is required to fix that behavior. Submitted by: Jun Kuriyama <kuriyama@imgsrc.co.jp> Reviewed by: Jeff Trawick git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60519 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index b8f8f271a..9703bb9c6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -42,7 +42,9 @@ LIBAPR = @LIBPREFIX@apr.a
#
all: Makefile $(LIBAPR)
-$(LIBAPR): $(MODULES) subdirs
+$(MODULES): subdirs
+
+$(LIBAPR): $(MODULES)
@rm -rf objs
@mkdir objs
@rm -f $@