8000 Fix typo and add depend for plpgsql. Fix #8 issue. · roman0yurin/postgres@794ff5a · GitHub
[go: up one dir, main page]

Skip to content

Commit 794ff5a

Browse files
committed
Fix typo and add depend for plpgsql. Fix postgres#8 issue.
1 parent c4e1e26 commit 794ff5a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/backend/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ set_source_files_properties(${BISON_PARSER_GRAM_OUTPUTS}
688688

689689
add_custom_command(
690690
MAIN_DEPENDENCY ${BISON_PARSER_GRAM_OUTPUTS}
691-
OUTPUT ${PROJECT_SOURCE_DIR}/src/inlude/parser/gram.h
691+
OUTPUT ${PROJECT_SOURCE_DIR}/src/include/parser/gram.h
692692
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/parser/gram.h ${PROJECT_SOURCE_DIR}/src/include/parser/gram.h
693693
)
694694

src/pl/plpgsql/src/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ set(plpgsql_SRCS
2020

2121
add_library(plpgsql SHARED ${plpgsql_SRCS})
2222
set_target_properties(plpgsql PROPERTIES PREFIX "")
23+
add_dependencies(plpgsql postgres)
2324

2425
install(TARGETS plpgsql
2526
RUNTIME DESTINATION ${PGBINDIR}

0 commit comments

Comments
 (0)
0