diff --git a/qb/config.libs.sh b/qb/config.libs.sh index af4d80f9b1f..8089123e826 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -520,6 +520,6 @@ fi # Creates config.mk and config.h. add_define_make GLOBAL_CONFIG_DIR "$GLOBAL_CONFIG_DIR" -VARS=$(eval set | grep ^HAVE_ | sed s/=.*// | sed s/^HAVE_//) -create_config_make config.mk $VARS -create_config_header config.h $VARS +VARS=$(eval set | grep ^HAVE_ | sed 's/=.*//' | sed 's/^HAVE_//') +create_config_make config.mk $(printf %s "$VARS") +create_config_header config.h $(printf %s "$VARS")