diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-09-11 16:21:33 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-09-11 16:21:33 +0200 |
commit | 077877dc7cd62aef04724f654d1ca6ce0df08db8 (patch) | |
tree | 42c762adb978cb42543d902ab2cbbda0afe0c0c1 /package/rsync | |
parent | 1ee3ae1f9f75e5c4b093736f8f402441531499bf (diff) |
add static linking support
Diffstat (limited to 'package/rsync')
-rw-r--r-- | package/rsync/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/rsync/Makefile b/package/rsync/Makefile index 63451f041..054a5d641 100644 --- a/package/rsync/Makefile +++ b/package/rsync/Makefile @@ -18,6 +18,11 @@ include ${TOPDIR}/mk/package.mk $(eval $(call PKG_template,RSYNC,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) +ifeq ($(ADK_STATIC),y) +TARGET_CFLAGS+= -static +TARGET_LDFLAGS+= -static +endif + post-install: ${INSTALL_DIR} ${IDIR_RSYNC}/usr/bin ${INSTALL_BIN} ${WRKINST}/usr/bin/rsync ${IDIR_RSYNC}/usr/bin |