Skip to content

Commit cb5b8d8

Browse files
committed
Do not list dirs in file glob
1 parent 0967d22 commit cb5b8d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

graalpython/com.oracle.graal.python.pegparser.generator/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ set(TOKENS "${INPUT_PATH}/Tokens")
2222
set(ASDL "${INPUT_PATH}/Python.asdl")
2323

2424
file(GLOB_RECURSE PEGEN_FILES
25-
LIST_DIRECTORIES TRUE
25+
LIST_DIRECTORIES FALSE
2626
"${CMAKE_CURRENT_LIST_DIR}/pegen/*.py")
2727
file(GLOB_RECURSE PEGJAVA_FILES
28-
LIST_DIRECTORIES TRUE
28+
LIST_DIRECTORIES FALSE
2929
"${CMAKE_CURRENT_LIST_DIR}/pegen/*.py")
3030
file(GLOB_RECURSE ASDL_FILES
31-
LIST_DIRECTORIES TRUE
31+
LIST_DIRECTORIES FALSE
3232
"${CMAKE_CURRENT_LIST_DIR}/asdl/*.py")
3333

3434
set(ASDL_STAMP "Python.asdl.stamp")

0 commit comments

Comments
 (0)