]> git.lyx.org Git - features.git/commitdiff
Fix packaging for mingw-64
authorGeorg Baum <baum@lyx.org>
Thu, 5 May 2016 10:46:59 +0000 (12:46 +0200)
committerRichard Heck <rgheck@lyx.org>
Sun, 29 May 2016 21:55:43 +0000 (17:55 -0400)
See bug 10053 for details. Without this, the package is only set correctly
for 32bit mingw.
Thanks Enrico for suggesting this fix and Shankar Giri Venkita Giri for
testing it.

config/lyxinclude.m4

index 45b40e325a5b73de05d062b034320afca046ddec..965c7ef92001b8d716d62366d5192cdde74d0112 100644 (file)
@@ -630,7 +630,7 @@ AC_ARG_WITH(packaging,
   [lyx_use_packaging="$withval"], [
   case $host in
     *-apple-darwin*) lyx_use_packaging=macosx ;;
-    *-pc-mingw32*) lyx_use_packaging=windows ;;
+    *-pc-mingw*) lyx_use_packaging=windows ;;
     *haiku*) lyx_use_packaging=haiku ;;
     *) lyx_use_packaging=posix ;;
   esac])