aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-devtools/codexl/codexl/makefile-mkdir-ordering.patch
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-devtools/codexl/codexl/makefile-mkdir-ordering.patch')
-rw-r--r--common/recipes-devtools/codexl/codexl/makefile-mkdir-ordering.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/common/recipes-devtools/codexl/codexl/makefile-mkdir-ordering.patch b/common/recipes-devtools/codexl/codexl/makefile-mkdir-ordering.patch
deleted file mode 100644
index 6318918c..00000000
--- a/common/recipes-devtools/codexl/codexl/makefile-mkdir-ordering.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- CodeXL/Components/GpuProfiling/Build/CommonTargets.mk.orig 2017-01-19 15:56:10.300696899 -0500
-+++ CodeXL/Components/GpuProfiling/Build/CommonTargets.mk 2017-01-19 16:05:12.473012993 -0500
-@@ -39,7 +39,7 @@
-
- # source file targets
-
--BUILD_SRC=$(CC) $(CFLAGS) $(INCLUDES) $(DEFINES) -c $< -o $@
-+BUILD_SRC=mkdir -p $(@D); $(CC) $(CFLAGS) $(INCLUDES) $(DEFINES) -c $< -o $@
-
- $(OBJ_DIR)/%.o: %.cpp
- $(BUILD_SRC)