Skip to content

Commit

Permalink
properly unpack the bundled utf8proc library before trying to include…
Browse files Browse the repository at this point in the history
… utf8proc.h
  • Loading branch information
liquidaty committed Jan 21, 2022
1 parent a6feb0d commit 7107742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ ${INIH_OBJECT}: ${INIH_SRC}/ini.c
${CC} ${CFLAGS} -I${INIH_INCLUDE} -DINI_HANDLER_LINENO=1 -DINI_CALL_HANDLER_ON_NEW_SECTION=1 -c $< -o $@

${CLI_APP_OBJECT} : cli_ini.c builtin/*.c ${JSONWRITER_OBJECT}
${CLI_APP_OBJECT} ${CLI_OBJECTS}: ${BUILD_DIR}/objs/cli_%.o: %.c
${CLI_APP_OBJECT} ${CLI_OBJECTS}: ${BUILD_DIR}/objs/cli_%.o: %.c ${UTF8PROC_OBJECT}
@mkdir -p `dirname "$@"`
${CC} ${CFLAGS} -DVERSION=\"${VERSION}\" -DZSV_CLI -DMAIN=main_$* -I${JSONWRITER_INCLUDE} ${CLI_INCLUDE} -Iexternal/sglib -I${INCLUDE_DIR} -c $< -o $@ ${SQLITE_EXT_INCLUDE}

Expand Down

0 comments on commit 7107742

Please sign in to comment.