diff options
author | David Ostrovsky <david@ostrovsky.org> | 2012-10-24 21:38:51 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-10-24 19:42:06 +0000 |
commit | b5c0e66bb93d969adebf9be892bed59f72d1c8c9 (patch) | |
tree | 38bc570d61b5d5c3539b2eed005a7e3905f35494 | |
parent | a2e8ac6228f4863eef84ca8a9fca73a3808c1b18 (diff) |
fixing VS 2010 error: OutDir property must end with a trailing slash
Change-Id: Ic6477adbd8e8eaa24f851befe5d18d34061e88ce
Reviewed-on: https://gerrit.libreoffice.org/905
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
-rw-r--r-- | liborcus/ExternalProject_liborcus.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/liborcus/ExternalProject_liborcus.mk b/liborcus/ExternalProject_liborcus.mk index 50cd8778d8a7..cc12050729fd 100644 --- a/liborcus/ExternalProject_liborcus.mk +++ b/liborcus/ExternalProject_liborcus.mk @@ -30,7 +30,7 @@ $(call gb_ExternalProject_get_state_target,liborcus,build) : && export BOOST_INCLUDE_DIR=$(OUTDIR)/inc/external \ && export BOOST_LIB_DIR=$(OUTDIR)/lib \ && $(COMPATH)/../Common7/Tools/vcupgrade.exe liborcus-static-nozip.vcproj \ - && MSBuild.exe liborcus-static-nozip.vcxproj /p:Configuration=Release /p:OutDir=Release /p:TargetName=orcus /p:WholeProgramOptimization=no \ + && MSBuild.exe liborcus-static-nozip.vcxproj /p:Configuration=Release /p:OutDir=Release/ /p:TargetName=orcus /p:WholeProgramOptimization=no \ && touch $@ endif |