Commit e9a49a44 authored by bitplane's avatar bitplane

CCSMLoader compiles again, make install now forces the symbolic link between...

CCSMLoader compiles again, make install now forces the symbolic link between so and soname (installing twice no longer reports errors)

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2538 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 3ef53bc2
......@@ -420,7 +420,7 @@ namespace scene
{
const LightMap* lmap = csmFile->getLightMapAt(l);
core::stringc<c16> lmapName = lmprefix;
core::string<c16> lmapName = lmprefix;
lmapName += "LMAP_";
lmapName += core::string<c16>(l+1);
os::Printer::log("CCSMLoader loading light map", lmapName.c_str());
......
......@@ -130,7 +130,7 @@ install:
mkdir -p $(INSTALL_DIR)/../include/irrlicht
cp -r ../../include $(INSTALL_DIR)/../include/irrlicht
cp $(LIB_PATH)/$(SHARED_LIB).$(VERSION) $(INSTALL_DIR)
cd $(INSTALL_DIR) && ln -s libIrrlicht.so.$(VERSION) $(SHARED_LIB)
cd $(INSTALL_DIR) && ln -s -f libIrrlicht.so.$(VERSION) $(SHARED_LIB)
ldconfig -n $(INSTALL_DIR)
install_osx:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment