summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2018-01-12 01:30:33 +0000
committerJim Ingham <jingham@apple.com>2018-01-12 01:30:33 +0000
commit8157e8ee8c35efadb7ec7a8744d33eecf4254819 (patch)
treeb1a9e11dfa89f922ec13a26670e3e6df226cce53 /lldb/packages/Python/lldbsuite/test
parent3ffbbeabbcd84f68bb1b7765226d0665eb8492a6 (diff)
downloadbcm5719-llvm-8157e8ee8c35efadb7ec7a8744d33eecf4254819.tar.gz
bcm5719-llvm-8157e8ee8c35efadb7ec7a8744d33eecf4254819.zip
Fix the Makefile - this version should work on the bot
llvm-svn: 322341
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r--lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile b/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
index 5673a499377..c75a079fe81 100644
--- a/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
@@ -6,12 +6,11 @@ endif
CFLAGS ?= -g -O0 -arch $(ARCH)
-all: clean TestApp
+all: TestApp.app/Contents/MacOS/TestApp
-TestApp:
+TestApp.app/Contents/MacOS/TestApp:
$(CC) $(CFLAGS) -o TestApp main.c
- mv TestApp TestApp.app/Contents/MacOs/TestApp
+ mv TestApp TestApp.app/Contents/MacOS/TestApp
mv TestApp.dSYM TestApp.app.dSYM
clean:
rm -rf TestApp.app/Contents/MacOS/TestApp TestApp.app.dSYM
-
OpenPOWER on IntegriCloud