Skip to content

Commit

Permalink
qb: Fix $VARS for zsh.
Browse files Browse the repository at this point in the history
  • Loading branch information
orbea committed Oct 21, 2017
1 parent 514391b commit a943fab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qb/config.libs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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")

0 comments on commit a943fab

Please sign in to comment.