diff options
author | Damien Miller <djm@mindrot.org> | 2019-11-28 08:09:07 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-11-28 08:10:37 +0100 |
commit | 5ca52c0f2e5e7f7d01d8d557b994b5c2087bed00 (patch) | |
tree | a25d373a8b40bd72ecc0b61e69e54bf4f076c9db /Makefile.in | |
parent | upstream: tweak wording (diff) | |
download | openssh-5ca52c0f2e5e7f7d01d8d557b994b5c2087bed00.tar.xz openssh-5ca52c0f2e5e7f7d01d8d557b994b5c2087bed00.zip |
$< doesn't work as` I thought; explicily list objs
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index c775a260a..8528db3b6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -603,7 +603,7 @@ SK_DUMMY_OBJS=\ $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c $< -o $@ regress/misc/sk-dummy/sk-dummy.so: $(SK_DUMMY_OBJS) - $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -shared -o $@ $< \ + $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -shared -o $@ $(SK_DUMMY_OBJS) \ -L. -Lopenbsd-compat -lopenbsd-compat $(LIBS) regress-binaries: regress-prep $(LIBCOMPAT) \ |