1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-20 19:40:18 +02:00

Fix definition name -> fix build on FreeBSD

This commit is contained in:
Dmitry Marakasov 2012-07-22 23:18:36 +04:00
parent 829f262c79
commit f2274c4dda

View File

@ -297,7 +297,7 @@ void initializePaths()
#elif defined(__FreeBSD__) #elif defined(__FreeBSD__)
path_share = std::string(INSTALL_PREFIX) + "/share/" + PROJECT_NAME; path_share = std::string(CMAKE_INSTALL_PREFIX) + "/share/" + PROJECT_NAME;
path_user = std::string(getenv("HOME")) + "/." + PROJECT_NAME; path_user = std::string(getenv("HOME")) + "/." + PROJECT_NAME;
#endif #endif