mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
Fix build error on clear rebuild
When rebuilding textmate from scratch: git clean -xffd; git reset --hard HEAD; rm -rf ~/build/TextMate/; ./configure; ninja This error appears: Frameworks/OakAppKit/src/OakTabBarView.mm:7:9: fatal error: 'OakAppKit/OakFileIconImage.h' file not found After one issues "ninja" again, textmate continues building fine. I guess this might be because perhaps OakAppKit's headers are being copied to the build include directory (~/build/TextMate/include) in parallel when building OakTabBarView.mm. No matter what actually is the case, this patch fixes building during clean build.
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
#import "NSImage Additions.h"
|
||||
#import "NSMenuItem Additions.h"
|
||||
#import "NSView Additions.h"
|
||||
#import <OakAppKit/OakFileIconImage.h>
|
||||
#import "OakFileIconImage.h"
|
||||
#import <OakFoundation/NSString Additions.h>
|
||||
#import <OakFoundation/NSArray Additions.h>
|
||||
#import <oak/oak.h>
|
||||
|
||||
Reference in New Issue
Block a user