diff options
| author | Cory Fields <[email protected]> | 2014-06-10 15:43:02 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2014-06-10 15:53:21 -0400 |
| commit | 38e324af8693eb0c3d4bf22df9cbb73667f195ce (patch) | |
| tree | 80073ad077da4771178fa276a79b358507d0c4bc /src/qt/bitcoin.cpp | |
| parent | Merge pull request #4318 from laanwj/2014_06_script_unused_debugging (diff) | |
| download | discoin-38e324af8693eb0c3d4bf22df9cbb73667f195ce.tar.xz discoin-38e324af8693eb0c3d4bf22df9cbb73667f195ce.zip | |
build: qt: split locale resources. Fixes non-deterministic distcheck
The rcc tool is quirky and only honors files in the same directory as the qrc.
When doing an out-of-tree build (as 'make distcheck' does), the generated
translation files end up in a different path, so rcc can't find them.
Split them up so that rcc is run twice: once for static source files and once
for generated files.
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -rw-r--r-- | src/qt/bitcoin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 45d7a5288..2be8191eb 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -475,6 +475,7 @@ int main(int argc, char *argv[]) #endif Q_INIT_RESOURCE(bitcoin); + Q_INIT_RESOURCE(bitcoin_locale); BitcoinApplication app(argc, argv); #if QT_VERSION > 0x050100 // Generate high-dpi pixmaps |