You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i got an issue to compile Flamerobin under OpenSuse 15.
I downloaded the last snapshot fro Flamrerobin (flamerobin-0.9.6) and tried to compile it under OpenSuse by running "configure" and then "make -f Makefile".
make stops the first time while missing FRStyle.cpp with the message: make: *** No rule to make target 'gui/FRStyle.cpp', needed by 'flamerobin_FRStyle.o'. Stop.
This is caused by an error in Makefile because 'flamerobin_FRStyle.o' depends on "$(srcdir)/${SOURCEDIR}/gui/FRStyle.cpp $(FLAMEROBIN_ODEP)"
I was able to follow this through Makefile.in to flamerobin.bkl. There files are sometimes referenced as ${SOURCEDIR} (curly brackets) and more often as $(SOURCEDIR) (round brackets). It seems that all files referenced by the curly brackets SOURCEDIR are not replaced during conversion to the Makefiles by 'src'.
The text was updated successfully, but these errors were encountered:
i got an issue to compile Flamerobin under OpenSuse 15.
I downloaded the last snapshot fro Flamrerobin (flamerobin-0.9.6) and tried to compile it under OpenSuse by running "configure" and then "make -f Makefile".
make stops the first time while missing FRStyle.cpp with the message:
make: *** No rule to make target 'gui/FRStyle.cpp', needed by 'flamerobin_FRStyle.o'. Stop.
This is caused by an error in Makefile because 'flamerobin_FRStyle.o' depends on
"$(srcdir)/${SOURCEDIR}/gui/FRStyle.cpp $(FLAMEROBIN_ODEP)"
but ${SOURCEDIR} isn't defined anywhere,
I was able to follow this through Makefile.in to flamerobin.bkl. There files are sometimes referenced as ${SOURCEDIR} (curly brackets) and more often as $(SOURCEDIR) (round brackets). It seems that all files referenced by the curly brackets SOURCEDIR are not replaced during conversion to the Makefiles by 'src'.
The text was updated successfully, but these errors were encountered: