diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-03-23 13:33:40 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-03-23 14:48:03 +0000 |
commit | 5113441728bdf0a6e2c11922478d5515ef886b8e (patch) | |
tree | 5d0291f36022738456cdf1811239380a3d9edac5 /configure.ac | |
parent | 6d7ed03dd3c7472a481728b132e4fb8b86957f84 (diff) |
configure: remove hack to add quotes to $DEVENV again
This was added because CPPUNITTRACE='"$(DEVENV)" /debugexe' is less
convenient to write than CPPUNITTRACE='$(DEVENV) /debugexe'.
However DavidO points out that CPPUNITTRACE=TRUE is even more
convenient and sort of optimal already, and it turns out it's broken by
the extra quotes, so remove the hack.
Change-Id: Ic5d94f9a0774cd41821b68728404c205552d674e
Reviewed-on: https://gerrit.libreoffice.org/35589
Reviewed-by: David Ostrovsky <david@ostrovsky.org>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index fd44c66ba942..60ea0ead62b4 100644 --- a/configure.ac +++ b/configure.ac @@ -3456,8 +3456,6 @@ if test "$_os" = "WINNT"; then if test ! -e "$DEVENV"; then AC_MSG_ERROR([No devenv.exe found, Visual Studio installation broken?]) fi - # add quotes around it, this is an ugly hack for convenience - DEVENV=\"${DEVENV}\" dnl =========================================================== dnl Check for the corresponding mspdb*.dll |