-
Notifications
You must be signed in to change notification settings - Fork 272
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
Set docdir on Windows builds #376
Conversation
With eht16@6389d9e I'm now done with my changes. G-P build fine and installer works properly. There is still an issue with some plugins not being able to open their local help files in |
@@ -75,6 +75,7 @@ AC_DEFUN([GP_CHECK_MINGW], | |||
*mingw*) | |||
AC_DEFINE([WIN32], [1], [we are cross compiling for WIN32]) | |||
AM_CONDITIONAL([MINGW], true) | |||
AC_SUBST([docdir], '${prefix}/doc/geany-plugins') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this dosn't seem to match what DOCDIR
is set to below, what's up with this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, this was just a left-over in this PR. I actually built the provided test binaries without this.
Thanks for noticing it and sorry. Fixed in eht16@953d478.
Btw, I'd like to squash the commits before merging. |
Sure. LGBI now. |
953d478
to
02649ac
Compare
And remove unused define PKGLIBDIR and quote paths even.
02649ac
to
ebad47c
Compare
And remove unused define PKGLIBDIR and quote paths even.
As continuation of #374 after more testing on Windows.
These should be last bits regarding Waf->Autotools migration for G-P on Windows, so I hope.
As we all know, I'm not an Autotools expert: maybe there is a better way/location to overwrite
docdir
than inGP_CHECK_MINGW
.