1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-29 15:41:13 +03:00

Change default SOPREFIX on Windows to "bin"

Under MinGW, the convention is to install DLLs under bin.

Fixes bug #774090:

https://bugzilla.gnome.org/show_bug.cgi?id=774090
This commit is contained in:
Nick Wellnhofer
2016-12-02 17:29:11 +01:00
parent ca31bcc695
commit 6ae7de3ac3

View File

@ -424,7 +424,7 @@ if (buildIncPrefix == "")
if (buildLibPrefix == "")
buildLibPrefix = "$(PREFIX)" + dirSep + "lib";
if (buildSoPrefix == "")
buildSoPrefix = "$(PREFIX)" + dirSep + "lib";
buildSoPrefix = "$(PREFIX)" + dirSep + "bin";
// Discover the version.
discoverVersion();