[haiku-commits] r33836 - haiku/trunk/data/develop

  • From: axeld@xxxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Thu, 29 Oct 2009 22:30:56 +0100 (CET)

Author: axeld
Date: 2009-10-29 22:30:56 +0100 (Thu, 29 Oct 2009)
New Revision: 33836
Changeset: http://dev.haiku-os.org/changeset/33836/haiku

Modified:
   haiku/trunk/data/develop/makefile-engine
Log:
* Now you can actually use a $(NAME) with spaces in it. Might not work for the
  $(INSTALL_DIR) anymore, though.


Modified: haiku/trunk/data/develop/makefile-engine
===================================================================
--- haiku/trunk/data/develop/makefile-engine    2009-10-29 21:23:48 UTC (rev 
33835)
+++ haiku/trunk/data/develop/makefile-engine    2009-10-29 21:30:56 UTC (rev 
33836)
@@ -202,7 +202,7 @@
        ifeq ($(RSRCS), )
                DO_RSRCS :=
        else
-               DO_RSRCS := $(XRES) -o "$(TARGET)" $(RSRCS)
+               DO_RSRCS := $(XRES) -o $(TARGET) $(RSRCS)
        endif
 
 
@@ -284,7 +284,7 @@
 
 #      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 @@
        @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


Other related posts:

  • » [haiku-commits] r33836 - haiku/trunk/data/develop - axeld