summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2010-09-11 21:11:17 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2010-09-11 21:11:17 +0200
commitfb29ac5c2628375485752677a89043fa6b20a91d (patch)
tree778cf88232c964730d64d2b8f4e6925a5af0c569
parentffa211f93bdde39ad5f84b7bc6396b79e20385b9 (diff)
downloadmdk-fb29ac5c2628375485752677a89043fa6b20a91d.tar.gz
mdk-fb29ac5c2628375485752677a89043fa6b20a91d.tar.bz2
Allow parallel (make -jn) builds (#31018)
-rw-r--r--NEWS1
-rw-r--r--mixguile/Makefile.am4
2 files changed, 3 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 7530d89..8c7b096 100644
--- a/NEWS
+++ b/NEWS
@@ -15,6 +15,7 @@ Please send mdk bug reports to bug-mdk@gnu.org.
- Manual: download info updated to point to Git repositories
(#29524).
- Compilation without Guile works again (#28086)
+ - Parallel compilation with `make -jn' now works (#31018)
---------------------------------------------------------------------------
* Version 1.2.5 (11/10/09):
diff --git a/mixguile/Makefile.am b/mixguile/Makefile.am
index 4da99e4..95e527c 100644
--- a/mixguile/Makefile.am
+++ b/mixguile/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in
-# Copyright (C) 2001 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2010 Free Software Foundation, Inc.
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
@@ -31,7 +31,7 @@ libmixguile_a_SOURCES = mixguile.h mixguile.c \
bin_PROGRAMS = mixguile
mixguile_LDADD = $(top_builddir)/mixlib/libmix.a \
$(top_builddir)/lib/libreplace.a \
- $(top_builddir)/mixguile/libmixguile.a $(INTLLIBS)
+ libmixguile.a $(INTLLIBS)
mixguile_SOURCES = mixguile_main.c
else