-
Notifications
You must be signed in to change notification settings - Fork 270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
./waf updatepo doesn't work #293
Comments
This is caused by the fact that the c files are created from the vala files. This should be solved by running ./waf build before doing ./waf updatepo (and having valac installed) |
Nope, this is not enough. The problem is that the generated C sources are expected in the ../multiterm/src folder, relative to the POTFILES.in file. I guess with some magic, we could fix this or work around it in some way. But since we plan to drop Waf support after the 1.26 release, I'm tempted to leave this as is for now. |
Entering the ./multiterm/src and running make before waf updatepo does the trick too. Indeed, if waf get replaced, don't spend time on this. |
For some reason the ./waf updatepo script doesn't work. It complains output missing a file. The reason seems to be that (recently?) the files in multiterm are changed from .c to .vala. Simply faking the system by setting a symbolic link for each .c file in this ./multiterm/src directory let the waf script run correctly, like:
ln -s ./multiterm/src/config.vala ./multiterm/src/config.c
But that's a workaround, not a permanent solution, I think.
The text was updated successfully, but these errors were encountered: