Skip to content

Commit

Permalink
Don't use the $ in the variable assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
jaygooby authored Jun 15, 2019
1 parent b5d93ea commit 31d73df
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 31d73df

Please sign in to comment.