Skip to content

Commit e79ed21

Browse files
committed
fix merge conflict
2 parents eaf4ff4 + acd3fe2 commit e79ed21

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Dependencies
66

77
Update bugsnag-android to [v6.19.0](https//github.com/bugsnag/bugsnag-android/releases/tag/v6.19.0) [#262](https://github.com/bugsnag/bugsnag-unreal/pull/262)
8+
Update bugsnag-cocoa to [v6.34.1](https//github.com/bugsnag/bugsnag-cocoa/releases/tag/v6.34.1) [#263](https://github.com/bugsnag/bugsnag-unreal/pull/263)
89

910
Changelog
1011
=========

Plugins/Bugsnag/Source/ThirdParty/BugsnagCocoa/BugsnagCocoa.Build.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public BugsnagCocoa(ReadOnlyTargetRules Target) : base(Target)
1414
CheckFileExists(Path.Combine(IncludePath, "Bugsnag", "Bugsnag.h"));
1515
CheckFileExists(Path.Combine(IncludePath, "BugsnagPrivate", "Bugsnag+Private.h"));
1616
PublicSystemIncludePaths.Add(IncludePath);
17+
PublicSystemIncludePaths.Add(Path.Combine(IncludePath, "BugsnagPrivate"));
1718

1819
string LibraryPath = Path.Combine(ModuleDirectory, Target.Platform.ToString(), "libBugsnagStatic.a");
1920
CheckFileExists(LibraryPath);

deps/bugsnag-cocoa

Submodule bugsnag-cocoa updated 423 files

make/Cocoa.make

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ clean:
2121

2222
$(HEADERS): $(shell find $(SRCDIR) -type f -name '*.h')
2323
rsync --delete --recursive --times $(SRCDIR)/include/ $@/
24-
find $(SRCDIR) -type f -name '*.h' | grep -v $(SRCDIR)/include/ | rsync --delete --files-from - --no-relative --times . $@/BugsnagPrivate/
24+
find $(SRCDIR) -type f -name '*.h' | grep -v $(SRCDIR)/include/ | rsync --files-from - --no-relative --times . $@/BugsnagPrivate/
25+
rsync --recursive --times --include='*/' --include='*.h' --exclude='*' --prune-empty-dirs $(SRCDIR)/ $@/BugsnagPrivate/ --exclude=include/
2526
touch $@
2627

2728
$(IOS_LIB): $(shell find $(SRCDIR) -type f)

0 commit comments

Comments
 (0)