You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-misc/fortune-mod/files/fortune-mod-3.14.1-fix-loca...

31 lines
941 B

https://github.com/shlomif/fortune-mod/pull/69
The intention of LOCALDIR seems to be to allow local cookies to be
provided by the sysadmin in e.g. /usr/local/share/fortune,
but if set, before this patch, even cookies distributed
by upstream were stored there (and nothing in COOKIEDIR, e.g.
/usr/share/fortune - https://bugs.gentoo.org/865809).
Originally, we were setting LOCALDIR=COOKIEDIR=/usr/share/fortune to
workaround the issue, but see https://bugs.gentoo.org/857246.
--- a/datfiles/CMakeLists.txt
+++ b/datfiles/CMakeLists.txt
@@ -68,7 +68,7 @@ ADD_CUSTOM_TARGET(
)
INSTALL(
FILES ${_install_unrot_cookies}
- DESTINATION "${LOCALDIR}"
+ DESTINATION "${COOKIEDIR}"
)
IF (NOT NO_OFFENSIVE)
--- a/datfiles/off/CMakeLists.txt
+++ b/datfiles/off/CMakeLists.txt
@@ -54,5 +54,5 @@ ADD_CUSTOM_TARGET(
)
INSTALL(
FILES ${_install_rotated_cookies}
- DESTINATION "${LOCALODIR}"
+ DESTINATION "${OCOOKIEDIR}"
)