diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-02-24 11:59:53 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-02-24 11:59:53 +0100 |
commit | 832ceab088d9e3b4b9bcecdcc8b908c7a56e9b6e (patch) | |
tree | ee01a0488ade380f1b2dc571d01b425fa9115c87 /Makefile.in | |
parent | 36bddcbaa2d1673c1331c788eae9534aca2c5ec3 (diff) |
Avoid quoting nonsense on Windows
...where "/opt/lo/bin/make.exe distclean" had started to fail with
> rm -fr C:/lo64/core/test-install
> rm -fr C:/lo64/core/instdir
> rm -fr C:/lo64/core/workdir
> C:/cygwin64/bin/find: paths must precede expression: rm
> Usage: C:/cygwin64/bin/find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [path...] [expression]
> Makefile:170: recipe for target 'distclean' failed
> make: *** [distclean] Error 1
Change-Id: I98ecb51ba1747d55aec0eb80f5ec5a257dd5af76
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 33f396398491..d9aef81f4740 100644 --- a/Makefile.in +++ b/Makefile.in @@ -187,7 +187,7 @@ distclean : clean compilerplugins-clean $(BUILDDIR)/ios/lo.xcconfig \ $(BUILDDIR)/lo.xcent \ $(BUILDDIR)/sysui/desktop/macosx/Info.plist - $(FIND) $(SRCDIR)/solenv/gdb -name "*.pyc" -exec rm {} \; + $(FIND) $(SRCDIR)/solenv/gdb -name \*.pyc -exec rm {} \; # # custom command |