aboutsummaryrefslogtreecommitdiffstats
path: root/package/e2fsprogs
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/e2fsprogs
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/e2fsprogs')
-rw-r--r--package/e2fsprogs/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/e2fsprogs/Makefile b/package/e2fsprogs/Makefile
index a6b2d15707..e01828eacb 100644
--- a/package/e2fsprogs/Makefile
+++ b/package/e2fsprogs/Makefile
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=e2fsprogs
PKG_VERSION:=1.40.11
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/e2fsprogs
@@ -165,7 +165,7 @@ endef
define Package/libext2fs/install
$(INSTALL_DIR) $(1)/usr/lib
- $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libext2fs.so* $(1)/usr/lib/
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libext2fs.so* $(1)/usr/lib/
endef
define Package/tune2fs/install