freebsd-ports/multimedia/bombono/files/patch-src-mbase-project-table.cpp
Pawel Pekala f120b7547b - Force build with external boost libs otherwise port uses old,
bundled ones from tarball
- Add patches to fix build with newer, external boost libs
- Bump PORTREVISION as deps have changed

PR:		ports/168539
Reported by:	David Wolfskill <david@catwhisker.org>
2012-06-06 18:48:37 +00:00

11 lines
430 B
C++

--- src/mbase/project/table.cpp.orig 2012-06-05 22:28:36.000000000 +0200
+++ src/mbase/project/table.cpp 2012-06-05 22:39:36.000000000 +0200
@@ -427,7 +427,7 @@
{
for( fs::directory_iterator itr(dir), end; itr != end; ++itr )
if( IsFrameDir(*itr) )
- t_lst.push_back(itr->leaf());
+ t_lst.push_back(itr->path().filename().string());
}
}