Skip to content

Commit b2122a6

Browse files
committed
Cosmetic: when printing the configuration, protect against spaces in paths
The generated Makefile.config and compcert.ini are correct, it's just the printing that looks wrong.
1 parent 170d0dd commit b2122a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

configure

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -871,10 +871,10 @@ CompCert configuration:
871871
Menhir API library............ $menhir_dir
872872
The Flocq library............. $library_Flocq
873873
The MenhirLib library......... $library_MenhirLib
874-
Binaries installed in......... $(expandprefix $bindir)
875-
Shared config installed in.... $(expandprefix $sharedir)
874+
Binaries installed in......... $(expandprefix "$bindir")
875+
Shared config installed in.... $(expandprefix "$sharedir")
876876
Runtime library provided...... $has_runtime_lib
877-
Library files installed in.... $(expandprefix $libdir)
877+
Library files installed in.... $(expandprefix "$libdir")
878878
EOF
879879

880880
if test "$rellibdir" = "$libdir"; then :; else

0 commit comments

Comments
 (0)