[Lldb-commits] [PATCH] Use wildcard instead of relying on shell globbing.
Zachary Turner
zturner at google.com
Tue Jun 2 12:10:10 PDT 2015
lgtm, thanks. I fixed a few of these already but I guess there's still
more.
On Tue, Jun 2, 2015 at 12:05 PM Chaoren Lin <chaorenl at google.com> wrote:
> Hi zturner, clayborg,
>
> http://reviews.llvm.org/D10194
>
> Files:
> test/expression_command/call-function/Makefile
> test/functionalities/data-formatter/rdar-12437442/Makefile
>
> Index: test/expression_command/call-function/Makefile
> ===================================================================
> --- test/expression_command/call-function/Makefile
> +++ test/expression_command/call-function/Makefile
> @@ -12,4 +12,4 @@
> include $(LEVEL)/Makefile.rules
>
> clean::
> - rm -rf *.o *.d *.dSYM
> + rm -rf $(wildcard *.o *.d *.dSYM)
> Index: test/functionalities/data-formatter/rdar-12437442/Makefile
> ===================================================================
> --- test/functionalities/data-formatter/rdar-12437442/Makefile
> +++ test/functionalities/data-formatter/rdar-12437442/Makefile
> @@ -9,5 +9,4 @@
> LDFLAGS += -framework Foundation
>
> clean::
> - rm -rf *.o *.d *.dSYM *.log
> -
> \ No newline at end of file
> + rm -rf $(wildcard *.o *.d *.dSYM *.log)
>
> EMAIL PREFERENCES
> http://reviews.llvm.org/settings/panel/emailpreferences/
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150602/f579a405/attachment.html>
More information about the lldb-commits
mailing list