Skip to content

Commit 2475dc0

Browse files
committed
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.
1 parent ecc5c65 commit 2475dc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/libregex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ rm -f "$PREFIX/lib/libregex.a"
2323
${AR:-ar} -r "$PREFIX/lib/libregex.a" libregex.o
2424

2525
mkdir -p "$PREFIX/include"
26-
tee >nul $PREFIX/include/regex.h <<EOF
26+
tee >nul "$PREFIX/include/regex.h" <<EOF
2727
#pragma once
2828
#include <stddef.h>
2929

0 commit comments

Comments
 (0)