From 3fdc3c6ecca94c80dc791ee5f722c33d23e12e18 Mon Sep 17 00:00:00 2001 From: Erwin Janssen Date: Wed, 13 Jul 2016 00:30:36 +0200 Subject: [PATCH] Appveyor: Hard path to build utilities. Using %APPVEYOR_BUILD_FOLDER% doesn't work, so using a hard coded path instead. --- appveyor.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 548211738..b442d45a9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,9 +7,9 @@ environment: CHERE_INVOKING: 1 matrix: - compiler: msbuild - BISON: \%APPVEYOR_BUILD_FOLDER\%\windows\dependencies\graphviz-build-utilities\bison.exe - FLEX: \%APPVEYOR_BUILD_FOLDER\%\windows\dependencies\graphviz-build-utilities\flex.exe - SED: \%APPVEYOR_BUILD_FOLDER\%\windows\dependencies\graphviz-build-utilities\sed.exe + BISON: C:\projects\graphviz\windows\dependencies\graphviz-build-utilities\bison.exe + FLEX: C:\projects\graphviz\windows\dependencies\graphviz-build-utilities\flex.exe + SED: C:\projects\graphviz\windows\dependencies\graphviz-build-utilities\sed.exe #- compiler: msys2 #- compiler: cygwin @@ -48,14 +48,12 @@ install: cd .. - cmd: >- - cd windows\dependencies\libgd - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86 set WITH_DEVEL=deps set WITH_BUILD=gdbuild - + nmake /f windows/Makefile.vc build_libs build_script: -- 2.40.0