From b4c6a820b9e0e1d79caac4263dea4bcfd44ffc44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 29 Oct 2009 21:30:56 +0000 Subject: [PATCH] * Now you can actually use a $(NAME) with spaces in it. Might not work for the $(INSTALL_DIR) anymore, though. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33836 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- data/develop/makefile-engine | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/develop/makefile-engine b/data/develop/makefile-engine index f0e7f1623f..caee47e39f 100644 --- a/data/develop/makefile-engine +++ b/data/develop/makefile-engine @@ -202,7 +202,7 @@ endef ifeq ($(RSRCS), ) DO_RSRCS := else - DO_RSRCS := $(XRES) -o "$(TARGET)" $(RSRCS) + DO_RSRCS := $(XRES) -o $(TARGET) $(RSRCS) endif @@ -284,7 +284,7 @@ clean :: FORCE # remove just the application from the object folder rmapp :: - -rm -f "$(TARGET)" + -rm -f $(TARGET) # make it easy to install drivers for testing USER_BIN_PATH = /boot/home/config/add-ons/kernel/drivers/bin @@ -302,5 +302,5 @@ ifeq ($(INSTALL_DIR), ) @echo "No install directory specified for \"$(NAME)\" (INSTALL_DIR is empty)" >&2 else mkdir -p "$(INSTALL_DIR)" - cp "$(TARGET)" "$(INSTALL_DIR)/$(NAME)" + cp $(TARGET) $(INSTALL_DIR)/$(NAME) endif