diff options
| author | Florian Fainelli | 2017-01-01 00:13:34 +0000 |
|---|---|---|
| committer | Florian Fainelli | 2017-01-29 19:51:02 +0000 |
| commit | f3c5934981d7a30d122827b30d8bca330ce0fd60 (patch) | |
| tree | bfb450963266e85eb44da4eb644cf66f69080f50 | |
| parent | 200d932322f3d8c436a67c53f4fbca87f0aab8af (diff) | |
| download | openwrt-f3c5934981d7a30d122827b30d8bca330ce0fd60.tar.gz | |
rpcd: Explicitly link with lcrypt
Fixes build issues with some toolchains that don't add lcrypt in the default
search paths:
CMakeFiles/rpcd.dir/session.c.o: In function `rpc_login_test_password':
build_dir/target-mipsel-linux-gnu/rpcd-2016-12-03-0577cfc1/session.c:823: undefined reference to `crypt'
collect2: error: ld returned 1 exit status
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
| -rw-r--r-- | package/system/rpcd/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/system/rpcd/Makefile b/package/system/rpcd/Makefile index 9da7df85fb..d13f20eab4 100644 --- a/package/system/rpcd/Makefile +++ b/package/system/rpcd/Makefile @@ -51,6 +51,8 @@ define Package/rpcd/conffiles /etc/config/rpcd endef +TARGET_LDFLAGS += -lcrypt + define Package/rpcd/install $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) ./files/rpcd.init $(1)/etc/init.d/rpcd |