diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-27 19:55:33 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-27 19:55:33 +0000 |
commit | 3189247da1e8d6b30c76e208bd7cf9fbdfc8f580 (patch) | |
tree | f660f60d083f0bd5b25e0d702deb8c0a8f36f48f /Makeconf | |
parent | 9c92309deb59d538ccce9c932b457fe68504322c (diff) |
($(target)) [doinst == one]: Don't put $(OBJS) in the linker parens.
Diffstat (limited to 'Makeconf')
-rw-r--r-- | Makeconf | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |