summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2019-11-28 08:09:07 +0100
committerDamien Miller <djm@mindrot.org>2019-11-28 08:10:37 +0100
commit5ca52c0f2e5e7f7d01d8d557b994b5c2087bed00 (patch)
treea25d373a8b40bd72ecc0b61e69e54bf4f076c9db /Makefile.in
parentupstream: tweak wording (diff)
downloadopenssh-5ca52c0f2e5e7f7d01d8d557b994b5c2087bed00.tar.xz
openssh-5ca52c0f2e5e7f7d01d8d557b994b5c2087bed00.zip
$< doesn't work as` I thought; explicily list objs
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
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) \