File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1030,7 +1030,7 @@ clean-local:
1030
1030
-rm -rf test/__pycache__
1031
1031
1032
1032
.rc.o :
1033
- @test -f $(WINDRES )
1033
+ @test -f $(WINDRES ) || (echo " windres $( WINDRES ) not found, but is required to compile windows resource files " ; exit 1)
1034
1034
# # FIXME: How to get the appropriate modulename_CPPFLAGS in here?
1035
1035
$(AM_V_GEN ) $(WINDRES ) $(DEFS ) $(DEFAULT_INCLUDES ) $(INCLUDES ) $(CPPFLAGS ) -DWINDRES_PREPROC -i $< -o $@
1036
1036
Original file line number Diff line number Diff line change @@ -371,13 +371,13 @@ translate: $(srcdir)/qt/bitcoinstrings.cpp $(QT_FORMS_UI) $(QT_FORMS_UI) $(BITCO
371
371
@rm -f $(srcdir)/qt/locale/bitcoin_en.xlf.old
372
372
373
373
$(QT_QRC_LOCALE_CPP): $(QT_QRC_LOCALE) $(QT_QM)
374
- @test -f $(RCC)
374
+ @test -f $(RCC) || (echo "rcc $(RCC) not found, but is required for generating qrc cpp files"; exit 1)
375
375
@cp -f $< $(@D)/temp_$(<F)
376
376
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(RCC) -name bitcoin_locale --format-version 1 $(@D)/temp_$(<F) > $@
377
377
@rm $(@D)/temp_$(<F)
378
378
379
379
$(QT_QRC_CPP): $(QT_QRC) $(QT_FORMS_H) $(QT_RES_FONTS) $(QT_RES_ICONS) $(QT_RES_ANIMATION)
380
- @test -f $(RCC)
380
+ @test -f $(RCC) || (echo "rcc $(RCC) not found, but is required for generating qrc cpp files"; exit 1)
381
381
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(RCC) -name bitcoin --format-version 1 $< > $@
382
382
383
383
CLEAN_QT = $(nodist_qt_libbitcoinqt_a_SOURCES) $(QT_QM) $(QT_FORMS_H) qt/*.gcda qt/*.gcno qt/temp_bitcoin_locale.qrc
@@ -404,7 +404,7 @@ bitcoin_qt_apk: FORCE
404
404
cd qt/android && ./gradlew build
405
405
406
406
ui_%.h: %.ui
407
- @test -f $(UIC)
407
+ @test -f $(UIC) || (echo "uic $(UIC) not found, but is required for generating ui headers"; exit 1)
408
408
@$(MKDIR_P) $(@D)
409
409
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(UIC) -o $@ $< || (echo "Error creating $@"; false)
410
410
@@ -415,6 +415,6 @@ moc_%.cpp: %.h
415
415
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(MOC) $(DEFAULT_INCLUDES) $(QT_INCLUDES_UNSUPPRESSED) $(MOC_DEFS) $< > $@
416
416
417
417
%.qm: %.ts
418
- @test -f $(LRELEASE)
418
+ @test -f $(LRELEASE) || (echo "lrelease $(LRELEASE) not found, but is required for generating translations"; exit 1)
419
419
@$(MKDIR_P) $(@D)
420
420
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(LRELEASE) -silent $< -qm $@
You can’t perform that action at this time.
0 commit comments