Skip to content

Commit

Permalink
Change make to $(MAKE) in libs/Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Olson committed Dec 16, 2011
1 parent 46455ca commit 544b21e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ ifneq (${LIBGC_SUPPORTS_THREADS},)
cp /usr/lib/libgc.a ${GC_PATH}
else
@echo "System libgc doesn't support threads, building our own"
make buildgc
$(MAKE) buildgc
endif
else
@echo "No system libgc, building our own"
make buildgc
$(MAKE) buildgc
endif

buildgc:
cd sources && ./configure --enable-threads=posix --enable-thread-local-alloc && make
cd sources && ./configure --enable-threads=posix --enable-thread-local-alloc && $(MAKE)
cp sources/.libs/libgc.a ${GC_PATH}

0 comments on commit 544b21e

Please sign in to comment.