From: Damien Miller Date: Thu, 28 Nov 2019 07:09:07 +0000 (+1100) Subject: $< doesn't work as` I thought; explicily list objs X-Git-Tag: V_8_2_P1~232 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ca52c0f2e5e7f7d01d8d557b994b5c2087bed00;p=thirdparty%2Fopenssh-portable.git $< doesn't work as` I thought; explicily list objs --- 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) \