From a08cf913cdf10fab15a57e687b718e93f828e817 Mon Sep 17 00:00:00 2001 From: Keegan McAllister Date: Thu, 11 Jul 2013 10:58:27 -0700 Subject: [PATCH] Fix silent failure of make clean-servo Brace expansion is a bashism and doesn't work everywhere (for example, on Debian where /bin/sh is dash). --- mk/clean.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mk/clean.mk b/mk/clean.mk index a47b69c694f..946c131d4c4 100644 --- a/mk/clean.mk +++ b/mk/clean.mk @@ -26,19 +26,19 @@ clean-fast: $(DEPS_CLEAN_TARGETS_FAST) clean-servo $(Q)echo "$(filter-out $(SLOW_BUILDS),$(DEPS_CLEAN_ALL))" clean-util: - cd $(B)/src/components/util/ && rm -rf libutil*.{dylib,so} $(DONE_util) + cd $(B)/src/components/util/ && rm -rf libutil*.dylib libutil*.so $(DONE_util) clean-msg: - cd $(B)/src/components/msg/ && rm -rf libmsg*.{dylib,so} $(DONE_msg) + cd $(B)/src/components/msg/ && rm -rf libmsg*.dylib libmsg*.so $(DONE_msg) clean-net: - cd $(B)/src/components/net/ && rm -rf libnet*.{dylib,so} $(DONE_net) + cd $(B)/src/components/net/ && rm -rf libnet*.dylib libnet*.so $(DONE_net) clean-gfx: - cd $(B)/src/components/gfx/ && rm -rf libgfx*.{dylib,so} $(DONE_gfx) + cd $(B)/src/components/gfx/ && rm -rf libgfx*.dylib libgfx*.so $(DONE_gfx) clean-script: - cd $(B)/src/components/script/ && rm -rf libscript*.{dylib,so} $(DONE_script) + cd $(B)/src/components/script/ && rm -rf libscript*.dylib libscript*.so $(DONE_script) clean-servo: clean-gfx clean-util clean-net clean-script clean-msg rm -f servo servo-test