summaryrefslogtreecommitdiff
path: root/shmem
diff options
context:
space:
mode:
authordgaudet <dgaudet@13f79535-47bb-0310-9956-ffa450edef68>2000-04-14 02:18:21 +0000
committerdgaudet <dgaudet@13f79535-47bb-0310-9956-ffa450edef68>2000-04-14 02:18:21 +0000
commit25750e4962a549eba54a8bbed0837992b2a578be (patch)
tree9e9337c902123fb5a97058f48bcbb1a04583b08d /shmem
parent9f1c784e93414b20e5523d1357f8ad16527a09c7 (diff)
downloadlibapr-25750e4962a549eba54a8bbed0837992b2a578be.tar.gz
this was including mm_test.o in the library, which happens to define
main(). i figure my fix here is about as ugly as what was in the Makefile before. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59848 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'shmem')
-rw-r--r--shmem/unix/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/shmem/unix/Makefile.in b/shmem/unix/Makefile.in
index ffa494cbe..472f2c3ea 100644
--- a/shmem/unix/Makefile.in
+++ b/shmem/unix/Makefile.in
@@ -35,7 +35,7 @@ $(OBJS): Makefile
$(LIB): $(OBJS)
$(RM) -f $@
cd mm; make; cd ..
- cp mm/*.o .
+ cp mm/mm_global.o mm/mm_alloc.o mm/mm_core.o mm/mm_lib.o mm/mm_vers.o .
$(AR) cr $@ $(OBJS)
$(RANLIB) $@