Przeglądaj źródła

package/nfs-utils: fix unnecessary files removal

The removal of unnecessary files is currently broken by the fact that
the rm command is executed from the buildroot directory and not the
target directory.

This patch fixes the problem changing to target directory before
removing files.

Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Angelo Compagnucci 6 lat temu
rodzic
commit
a64c3a847d
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      package/nfs-utils/nfs-utils.mk

+ 1 - 1
package/nfs-utils/nfs-utils.mk

@@ -57,7 +57,7 @@ NFS_UTILS_CONF_OPTS += --disable-tirpc
 endif
 endif
 
 
 define NFS_UTILS_INSTALL_FIXUP
 define NFS_UTILS_INSTALL_FIXUP
-	rm -f $(NFS_UTILS_TARGETS_)
+	cd $(TARGET_DIR) && rm -f $(NFS_UTILS_TARGETS_)
 	touch $(TARGET_DIR)/etc/exports
 	touch $(TARGET_DIR)/etc/exports
 	$(INSTALL) -D -m 644 \
 	$(INSTALL) -D -m 644 \
 		$(@D)/utils/mount/nfsmount.conf $(TARGET_DIR)/etc/nfsmount.conf
 		$(@D)/utils/mount/nfsmount.conf $(TARGET_DIR)/etc/nfsmount.conf