aboutsummaryrefslogtreecommitdiffstats
path: root/package/libnl
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2009-01-04 00:08:37 +0000
committerLars-Peter Clausen <lars@metafoo.de>2009-01-04 00:08:37 +0000
commit3f8c4c8439b49d982a25b82adfc8be04620fd2d5 (patch)
tree8c07d93cf19f6a22a8583756a5935ec0076cbcaf /package/libnl
parent8119e2844023bdaa47bee79ead633a6f771d34f0 (diff)
downloadupstream-3f8c4c8439b49d982a25b82adfc8be04620fd2d5.tar.gz
upstream-3f8c4c8439b49d982a25b82adfc8be04620fd2d5.tar.bz2
upstream-3f8c4c8439b49d982a25b82adfc8be04620fd2d5.zip
Retain symlinks. $(INSTALL_*) copys the contens of a file, so if we want to keep symlinks either use $(CP) or create them manually. Fixes #4399
SVN-Revision: 13845
Diffstat (limited to 'package/libnl')
-rw-r--r--package/libnl/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/libnl/Makefile b/package/libnl/Makefile
index c763526f8a..b17bc09f28 100644
--- a/package/libnl/Makefile
+++ b/package/libnl/Makefile
@@ -1,4 +1,4 @@
-#
+#
# Copyright (C) 2006-2008 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=libnl
PKG_VERSION:=1.1
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://people.suug.ch/~tgr/libnl/files/
@@ -48,7 +48,7 @@ ifneq ($(CONFIG_LINUX_2_6),)
define Package/libnl/install
$(INSTALL_DIR) $(1)/usr/lib
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/libnl.so.* $(1)/usr/lib/
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libnl.so.* $(1)/usr/lib/
endef
endif