Skip to content

Commit

Permalink
Merge pull request #15 from jaygooby/master
Browse files Browse the repository at this point in the history
Don't use the $ in the variable assignment
  • Loading branch information
rryqszq4 authored Jun 16, 2019
2 parents b5d93ea + 31d73df commit dfd263d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/src/ngx_http_sqlite_module.c"
NGX_ADDON_DEPS="$NGX_ADDON_DEPS $ngx_addon_dir/src/ngx_http_sqlite_module.h"

if [ -z "$SQLITE_INC" ]; then
$SQLITE_INC="/usr/include"
SQLITE_INC="/usr/include"
fi

if [ -z "$SQLITE_LIB" ]; then
$SQLITE_LIB="/usr/lib64"
SQLITE_LIB="/usr/lib64"
fi

CORE_INCS="$CORE_INCS $SQLITE_INC"
Expand Down

0 comments on commit dfd263d

Please sign in to comment.