# HG changeset patch # User John Donoghue # Date 1368556179 14400 # Node ID e6ba75a9608900d7cf0f1f41e0aa616a5648d8fe # Parent 046c38b3c3511fadc74f016b1b6eacee4faab1c7 Fix to install lrelease from the linquist tools. * /src/qt.mk (PKG_BUILD): added cd into lrelease folder and run make install in it. diff -r 046c38b3c351 -r e6ba75a96089 src/qt.mk --- a/src/qt.mk Tue May 14 15:13:41 2013 -0400 +++ b/src/qt.mk Tue May 14 14:29:39 2013 -0400 @@ -81,6 +81,10 @@ # # at least some of the qdbus tools are useful on target # cd '$(1)/tools/qdbus' && '$(1)/bin/qmake' qdbus.pro # $(MAKE) -C '$(1)/tools/qdbus' -j '$(JOBS)' install + + # lrelease (from linguist) needed by octave for GUI build + $(MAKE) -C '$(1)/tools/linguist/lrelease' -j '$(JOBS)' install + ln -fs '$(PREFIX)/$(TARGET)/bin/lrelease' '$(PREFIX)/bin/$(TARGET)-lrelease' # mkdir '$(1)/test-qt' # cd '$(1)/test-qt' && '$(TARGET)-qmake' '$(PWD)/$(2).pro'