Skip to content

Commit 42d31d2

Browse files
authored
Msys2: fix pkgconf (#7432)
#changelog #windows #msys2
1 parent ca74690 commit 42d31d2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libs/openFrameworksCompiled/project/msys2/config.msys2.default.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ FIND ?= /usr/bin/find
3939
PLATFORM_AR = $(MINGW_PREFIX)/bin/ar
4040
PLATFORM_LD = $(MINGW_PREFIX)/bin/ld
4141
PLATFORM_RESOURCE_COMPILER = $(MINGW_PREFIX)/bin/windres
42-
PLATFORM_PKG_CONFIG = /usr/bin/pkgconf
42+
PLATFORM_PKG_CONFIG = $(MINGW_PREFIX)/bin/pkgconf
4343

4444

4545
PLATFORM_PROJECT_DEBUG_BIN_NAME=$(APPNAME)_debug.exe

scripts/msys2/install_dependencies.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ while [[ $# > 0 ]] ; do
3131
done
3232

3333
# List of MSYS packages to be installed
34-
msyspackages="make rsync zip unzip wget pkgconf"
34+
msyspackages="make rsync zip unzip wget"
3535

3636
# List of MINGW packages to be installed (without prefix)
3737
mingwPackages="assimp boost cairo curl freeglut FreeImage \
3838
gcc gdb glew glfw glm \
3939
harfbuzz libsndfile libusb libxml2 mpg123 \
4040
nlohmann-json ntldd-git openal opencv \
41-
poco pugixml rtaudio tools \
41+
pkgconf poco pugixml rtaudio tools \
4242
uriparser utf8cpp zlib"
4343

4444
# Build the full list of packages adding prefix to MINGW packages

0 commit comments

Comments
 (0)