mirror of
https://github.com/skeeto/w64devkit.git
synced 2025-08-07 22:42:54 +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:
@@ -23,7 +23,7 @@ rm -f "$PREFIX/lib/libregex.a"
|
|||||||
${AR:-ar} -r "$PREFIX/lib/libregex.a" libregex.o
|
${AR:-ar} -r "$PREFIX/lib/libregex.a" libregex.o
|
||||||
|
|
||||||
mkdir -p "$PREFIX/include"
|
mkdir -p "$PREFIX/include"
|
||||||
tee >nul $PREFIX/include/regex.h <<EOF
|
tee >nul "$PREFIX/include/regex.h" <<EOF
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user