From: Eric Andersen Date: Wed, 24 Mar 2004 22:01:22 +0000 (-0000) Subject: fix a stupid search-n-replace bug X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4bda7c0831f1648f33206a5c9c523bb56301ae7a;p=buildroot.git fix a stupid search-n-replace bug --- diff --git a/make/sed.mk b/make/sed.mk index 7b3bf52689..71546ca5c4 100644 --- a/make/sed.mk +++ b/make/sed.mk @@ -69,7 +69,7 @@ host-sed: $(HOST_SED_TARGET) host-sed-clean: $(MAKE) DESTDIR=$(STAGING_DIR) -C $(SED_DIR1) uninstall - -sed -C $(SED_DIR1) clean + -$(MAKE) -C $(SED_DIR1) clean host-sed-dirclean: rm -rf $(SED_DIR1) @@ -127,7 +127,7 @@ sed: uclibc sed-target_binary sed-clean: $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(SED_DIR2) uninstall - -sed -C $(SED_DIR2) clean + -$(MAKE) -C $(SED_DIR2) clean sed-dirclean: rm -rf $(SED_DIR2)