Skip to content

Commit e797876

Browse files
committed
rsync
1 parent 9df471d commit e797876

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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-
rsync --delete --recursive --times --include='*/' --include='*.h' --exclude='*' --prune-empty-dirs $(SRCDIR)/ $@/BugsnagPrivate/ --exclude=include/
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)