build: Be more careful about the use of ..
This commit is contained in:
parent
ae96ed0827
commit
af6586a723
|
@ -266,6 +266,9 @@ if(GENERATE_DOC)
|
|||
# Copy the images to the build directory
|
||||
file(COPY ${SOURCE_DIR}/docs/images DESTINATION ${BUILD_DIR}/doc)
|
||||
|
||||
# Copy the aliases to the build directory
|
||||
file(COPY ${SOURCE_DIR}/docs/aliases DESTINATION ${BUILD_DIR}/docs)
|
||||
|
||||
# Run ldoc and make it fail if any warnings are generated. The
|
||||
# redirection-magic swaps stdout and stderr and awk exits with a non-zero
|
||||
# status if it sees at least one line of input.
|
||||
|
|
|
@ -64,9 +64,9 @@ file = {
|
|||
-- LUA libraries
|
||||
'../lib/',
|
||||
-- Old APIs the user should not longer use directly
|
||||
'../../docs/aliases/awful_client.lua',
|
||||
'../../docs/aliases/awful_screen.lua',
|
||||
'../../docs/aliases/awful_tag.lua',
|
||||
'../docs/aliases/awful_client.lua',
|
||||
'../docs/aliases/awful_screen.lua',
|
||||
'../docs/aliases/awful_tag.lua',
|
||||
exclude = {
|
||||
-- exclude these modules, as they do not contain any written
|
||||
-- documentation
|
||||
|
|
Loading…
Reference in New Issue