We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9df471d commit e797876Copy full SHA for e797876
make/Cocoa.make
@@ -21,7 +21,8 @@ clean:
21
22
$(HEADERS): $(shell find $(SRCDIR) -type f -name '*.h')
23
rsync --delete --recursive --times $(SRCDIR)/include/ $@/
24
- rsync --delete --recursive --times --include='*/' --include='*.h' --exclude='*' --prune-empty-dirs $(SRCDIR)/ $@/BugsnagPrivate/ --exclude=include/
+ 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/
26
touch $@
27
28
$(IOS_LIB): $(shell find $(SRCDIR) -type f)
0 commit comments