1
0
mirror of https://github.com/skeeto/w64devkit.git synced 2025-08-06 11:42:39 +03:00

Fix missing quotes in libregex.c

This library can be installed to a path with spaces, so all instances of
the prefix must be quoted. Though Autoconf does not support paths with
spaces and will not be able to use such installations.
This commit is contained in:
Christopher Wellons
2024-07-29 21:29:34 -04:00
parent ecc5c65615
commit 2475dc0230

View File

@@ -23,7 +23,7 @@ rm -f "$PREFIX/lib/libregex.a"
${AR:-ar} -r "$PREFIX/lib/libregex.a" libregex.o
mkdir -p "$PREFIX/include"
tee >nul $PREFIX/include/regex.h <<EOF
tee >nul "$PREFIX/include/regex.h" <<EOF
#pragma once
#include <stddef.h>