diff options
| author | Tomáš Chvátal <scarabeus@gentoo.org> | 2009-05-26 23:35:34 +0200 |
|---|---|---|
| committer | Tomáš Chvátal <scarabeus@gentoo.org> | 2009-05-26 23:35:34 +0200 |
| commit | 4f35af32ec14c63b4fbe669d74dabb86fda6cf7b (patch) | |
| tree | f4eed67dc7a1fc318086d96aa12c93a8a3fbc7cf /po | |
| parent | 37459c64b0048bb370953161487408676811aa1e (diff) | |
More whitespace.
Diffstat (limited to 'po')
| -rw-r--r-- | po/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt index 9122c8d..e436b23 100644 --- a/po/CMakeLists.txt +++ b/po/CMakeLists.txt @@ -19,10 +19,10 @@ SET ( DOMAIN "tuxanci" ) SET ( lingua "$ENV{LINGUAS}" ) string(REGEX REPLACE "[ \t]+" \; output "${lingua}") SET ( lingua_list ${output} ) -IF ( ${lingua} STREQUAL "" ) +IF ( "${lingua}" STREQUAL "" ) # all languages FILE ( GLOB _po_files *.po ) -ELSE ( ${lingua} STREQUAL "" ) +ELSE ( "${lingua}" STREQUAL "" ) # only specified languages SET ( _install ) SET ( _po_files ) @@ -30,7 +30,7 @@ ELSE ( ${lingua} STREQUAL "" ) FILE ( GLOB _po_file ${_lang}*.po ) LIST ( APPEND _po_files ${_po_file} ) ENDFOREACH ( _lang ) -ENDIF ( ${lingua} STREQUAL "" ) +ENDIF ( "${lingua}" STREQUAL "" ) SET ( _gmoFiles ) FOREACH ( _current_PO_FILE ${_po_files} ) IF ( EXISTS ${_current_PO_FILE} ) |