From e6a5ff7d5ae27e1f56f9f2f1e67d5cd8996ea17c Mon Sep 17 00:00:00 2001 From: nbelakovski Date: Tue, 17 Apr 2018 11:59:04 -0700 Subject: [PATCH] Fixing include line of btMultibodyWorldImporter.h to work with installed bullet files When running make install for Bullet, no "Extras/" folder is created, so the include line as is will fail. This modification should work since the relevant header is in the same folder as this header. --- Extras/Serialize/BulletWorldImporter/btMultiBodyWorldImporter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extras/Serialize/BulletWorldImporter/btMultiBodyWorldImporter.h b/Extras/Serialize/BulletWorldImporter/btMultiBodyWorldImporter.h index eb47ecda2..002616e40 100644 --- a/Extras/Serialize/BulletWorldImporter/btMultiBodyWorldImporter.h +++ b/Extras/Serialize/BulletWorldImporter/btMultiBodyWorldImporter.h @@ -1,7 +1,7 @@ #ifndef BT_MULTIBODY_WORLD_IMPORTER_H #define BT_MULTIBODY_WORLD_IMPORTER_H -#include "../Extras/Serialize/BulletWorldImporter/btBulletWorldImporter.h" +#include "btBulletWorldImporter.h" class btMultiBodyWorldImporter : public btBulletWorldImporter {