diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-11-01 12:19:09 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-11-02 22:07:53 +0100 |
commit | bc5069ac40a19fc0f421403c9f8ae7e645b34cbb (patch) | |
tree | 630f91fad103ece03f8d9e15f6e074dbe8c70a09 /Makefile.in | |
parent | 64a882888665dcbe15acc5793e7c9cf5f1bdc575 (diff) |
remove SOLARENV variable
It is constant and can just be replaced by $(SRCDIR)/solenv.
Use BUILD_TYPE where it was used to check if config_*.mk is sourced.
Change-Id: Ib9d480c57194b6340093aa47776f8768df69b7d1
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index bc8ed7640fea..0c384044c953 100644 --- a/Makefile.in +++ b/Makefile.in @@ -180,7 +180,7 @@ distclean : clean compilerplugins-clean $(BUILDDIR)/ios/lo.xcconfig \ $(BUILDDIR)/lo.xcent \ $(BUILDDIR)/sysui/desktop/macosx/Info.plist - find $(SOLARENV)/gdb -name "*.pyc" -exec rm {} \; + find $(SRCDIR)/solenv/gdb -name "*.pyc" -exec rm {} \; # # custom command @@ -331,7 +331,7 @@ tags: @create-tags docs: - @mkdocs.sh $(SRCDIR)/docs $(SOLARENV)/inc/doxygen.cfg + @mkdocs.sh $(SRCDIR)/docs $(SRCDIR)/solenv/inc/doxygen.cfg findunusedcode: @which callcatcher > /dev/null 2>&1 || \ @@ -345,7 +345,7 @@ findunusedcode: @echo unexport ARCH_FLAGS >> $(SRCDIR)/callcatcher/config_host.mk @echo unexport CFLAGS >> $(SRCDIR)/callcatcher/config_host.mk @echo unexport CXXFLAGS >> $(SRCDIR)/callcatcher/config_host.mk - $(GNUMAKE) -f $(SOLARENV)/bin/callcatcher.Makefile findunusedcode + $(GNUMAKE) -f $(SRCDIR)/solenv/bin/callcatcher.Makefile findunusedcode @grep ::.*\( unusedcode.all \ | grep -v ^Atom \ | grep -v ^atom:: \ |