diff options
-rw-r--r-- | package/openssh/openssh.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/openssh/openssh.mk b/package/openssh/openssh.mk index b95914b62d..fb5779e385 100644 --- a/package/openssh/openssh.mk +++ b/package/openssh/openssh.mk @@ -26,6 +26,10 @@ endef ifeq ($(BR2_arc),y) OPENSSH_CONF_OPTS += --without-pie endif +# PIE and static does not work on Linux +ifeq ($(BR2_STATIC_LIBS),y) +OPENSSH_CONF_OPTS += --without-pie +endif OPENSSH_DEPENDENCIES = zlib openssl |