projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix typo in Openswan control file, closes #465
[openwrt.git]
/
openwrt
/
package
/
util-linux
/
Makefile
diff --git
a/openwrt/package/util-linux/Makefile
b/openwrt/package/util-linux/Makefile
index
ad5dd19
..
6e8f5ab
100644
(file)
--- a/
openwrt/package/util-linux/Makefile
+++ b/
openwrt/package/util-linux/Makefile
@@
-19,6
+19,7
@@
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,FDISK,fdisk,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,FDISK,fdisk,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
+$(eval $(call PKG_template,LOSETUP,losetup,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(eval $(call PKG_template,SWAP_UTILS,swap-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(PKG_BUILD_DIR)/.configured:
$(eval $(call PKG_template,SWAP_UTILS,swap-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(PKG_BUILD_DIR)/.configured:
@@
-43,14
+44,20
@@
$(PKG_BUILD_DIR)/.built:
$(IPKG_FDISK):
install -d -m0755 $(IDIR_FDISK)/usr/sbin
$(IPKG_FDISK):
install -d -m0755 $(IDIR_FDISK)/usr/sbin
-
cp -fpR
$(PKG_INSTALL_DIR)/sbin/fdisk $(IDIR_FDISK)/usr/sbin/
+
$(CP)
$(PKG_INSTALL_DIR)/sbin/fdisk $(IDIR_FDISK)/usr/sbin/
$(RSTRIP) $(IDIR_FDISK)
$(IPKG_BUILD) $(IDIR_FDISK) $(PACKAGE_DIR)
$(RSTRIP) $(IDIR_FDISK)
$(IPKG_BUILD) $(IDIR_FDISK) $(PACKAGE_DIR)
+$(IPKG_LOSETUP):
+ install -d -m0755 $(IDIR_LOSETUP)/usr/sbin
+ $(CP) $(PKG_INSTALL_DIR)/sbin/losetup $(IDIR_LOSETUP)/usr/sbin/
+ $(RSTRIP) $(IDIR_LOSETUP)
+ $(IPKG_BUILD) $(IDIR_LOSETUP) $(PACKAGE_DIR)
+
$(IPKG_SWAP_UTILS):
install -d -m0755 $(IDIR_SWAP_UTILS)/usr/sbin
$(IPKG_SWAP_UTILS):
install -d -m0755 $(IDIR_SWAP_UTILS)/usr/sbin
-
cp -fpR
$(PKG_INSTALL_DIR)/sbin/mkswap $(IDIR_SWAP_UTILS)/usr/sbin/
-
cp -fpR
$(PKG_INSTALL_DIR)/sbin/swap{on,off} $(IDIR_SWAP_UTILS)/usr/sbin/
+
$(CP)
$(PKG_INSTALL_DIR)/sbin/mkswap $(IDIR_SWAP_UTILS)/usr/sbin/
+
$(CP)
$(PKG_INSTALL_DIR)/sbin/swap{on,off} $(IDIR_SWAP_UTILS)/usr/sbin/
$(RSTRIP) $(IDIR_SWAP_UTILS)
$(IPKG_BUILD) $(IDIR_SWAP_UTILS) $(PACKAGE_DIR)
$(RSTRIP) $(IDIR_SWAP_UTILS)
$(IPKG_BUILD) $(IDIR_SWAP_UTILS) $(PACKAGE_DIR)
This page took
0.024193 seconds
and
4
git commands to generate.