diff options
author | Darren Tucker <dtucker@dtucker.net> | 2022-02-25 03:23:04 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2022-02-25 03:23:04 +0100 |
commit | 54a86f4f6e1c43a2ca2be23ef799ab8910d4af70 (patch) | |
tree | 9c6e1ee58ff77f450b6b555628ba94be3d508c12 /Makefile.in | |
parent | Add tests for latest releases of {Libre,Open}SSL. (diff) | |
download | openssh-54a86f4f6e1c43a2ca2be23ef799ab8910d4af70.tar.xz openssh-54a86f4f6e1c43a2ca2be23ef799ab8910d4af70.zip |
Use PICFLAG instead of hard coding -fPIC.
Diffstat (limited to '')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 065bf91e3..a9b802b7d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -688,7 +688,7 @@ SK_DUMMY_LIBRARY=@SK_DUMMY_LIBRARY@ $(CC) $(CFLAGS_NOPIE) $(PICFLAG) $(CPPFLAGS) -c $< -o $@ regress/misc/sk-dummy/sk-dummy.so: $(SK_DUMMY_OBJS) - $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -shared -o $@ $(SK_DUMMY_OBJS) \ + $(CC) $(CFLAGS) $(CPPFLAGS) $(PICFLAG) -shared -o $@ $(SK_DUMMY_OBJS) \ -L. -Lopenbsd-compat -lopenbsd-compat $(LDFLAGS_NOPIE) $(LIBS) regress-binaries: regress-prep $(LIBCOMPAT) \ |