From b0629253765226375fd1bf7e296ef1174cf9c620 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sun, 2 Aug 2009 01:10:14 +0200 Subject: lvm: fix installation to target dir The installation to the target directory was broken for two reasons: * Due to how the lvm2.mk file was written, for each file listed in $(LVM2_TARGET_SBINS) and $(LVM2_TARGET_DMSETUP_SBINS), it was reinstalling all the files listed in those variables. When a target contains several elements, there's no need to make a loop to handle each of the elements: the rule will get executed as many times as they are elements in the target. * For some odd reason, lvm2 build system installs executable with 555 and libraries with 444. Therefore, once copied to the target directory, these executables and libraries cannot be overwritten... for example by a later execution of Buildroot. We fix this up by changing the permissions of the binaries and libraries installed by lvm2 to saner values (755 and 644) Signed-off-by: Thomas Petazzoni --- package/lvm2/lvm2.mk | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'package/lvm2') diff --git a/package/lvm2/lvm2.mk b/package/lvm2/lvm2.mk index b3467b528..3727e3636 100644 --- a/package/lvm2/lvm2.mk +++ b/package/lvm2/lvm2.mk @@ -81,17 +81,19 @@ $(LVM2_DIR)/.configured: $(LVM2_DIR)/.unpacked $(LVM2_DIR)/.built: $(LVM2_DIR)/.configured $(MAKE1) CC=$(TARGET_CC) RANLIB=$(TARGET_RANLIB) AR=$(TARGET_AR) -C $(LVM2_DIR) DESTDIR=$(STAGING_DIR) $(MAKE1) -C $(LVM2_DIR) DESTDIR=$(STAGING_DIR) install + # Fixup write permissions so that the files can be overwritten + # several times in the $(TARGET_DIR) + chmod 755 $(STAGING_DIR)/sbin/lvm + chmod 755 $(STAGING_DIR)/sbin/dmsetup + chmod 644 $(STAGING_DIR)/lib/$(LVM2_LIB) touch $(LVM2_DIR)/.built -$(LVM2_TARGET_SBINS): $(LVM2_DIR)/.built - for binary in $(LVM2_SBIN); do echo $$binary; cp -a $(STAGING_DIR)/sbin/$$binary $(TARGET_DIR)/sbin; done - -$(LVM2_TARGET_DMSETUP_SBINS): $(LVM2_DIR)/.built - for binary in $(LVM2_DMSETUP_SBIN); do echo $$binary; cp -a $(STAGING_DIR)/sbin/$$binary $(TARGET_DIR)/sbin; done +$(LVM2_TARGET_SBINS) $(LVM2_TARGET_DMSETUP_SBINS): $(LVM2_DIR)/.built + cp -a $(STAGING_DIR)/sbin/$(notdir $@) $@ $(LVM2_TARGET_LIBS): $(LVM2_DIR)/.built - for lib in $(LVM2_LIB); do echo $$lib; cp -a $(STAGING_DIR)/lib/$$lib $(TARGET_DIR)/lib; done + cp -a $(STAGING_DIR)/lib/$(notdir $@) $@ ifeq ($(BR2_PACKAGE_LVM2_DMSETUP_ONLY),y) -- cgit v1.2.3