summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-06-27 19:55:33 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-06-27 19:55:33 +0000
commit3189247da1e8d6b30c76e208bd7cf9fbdfc8f580 (patch)
treef660f60d083f0bd5b25e0d702deb8c0a8f36f48f
parent9c92309deb59d538ccce9c932b457fe68504322c (diff)
($(target)) [doinst == one]: Don't put $(OBJS) in the linker parens.
-rw-r--r--Makeconf2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makeconf b/Makeconf
index 09f68db6..c1a0b39a 100644
--- a/Makeconf
+++ b/Makeconf
@@ -159,7 +159,7 @@ LDFLAGS += -static
# Building the target
ifeq ($(doinst),one)
$(target): $(OBJS) $(HURDLIBS-files) $(OTHERLIBS) $(libc)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $(target) '-Wl,-(' $+ '-Wl,-)'
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $(target) $(OBJS) '-Wl,-(' $(HURDLIBS-files $(OTHERLIBS) $(libc) '-Wl,-)'
endif