BUG: fix 7230: don't ignore first parameter if it's not ALL

Alex
This commit is contained in:
Alexander Neundorf 2008-06-29 18:58:50 -04:00
parent d50cbe101a
commit 0a012cc428
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ MACRO(GETTEXT_CREATE_TRANSLATIONS _potFile _firstPoFile)
SET(_firstPoFile)
ENDIF(${_firstPoFile} STREQUAL "ALL")
FOREACH (_currentPoFile ${ARGN})
FOREACH (_currentPoFile ${_firstPoFile} ${ARGN})
GET_FILENAME_COMPONENT(_absFile ${_currentPoFile} ABSOLUTE)
GET_FILENAME_COMPONENT(_abs_PATH ${_absFile} PATH)
GET_FILENAME_COMPONENT(_lang ${_absFile} NAME_WE)