Use cp -a
instead of cp -ar
.
According to Linux man, `-r` and `-R` are synonims and `-a` implies `-R`. However, FreeBSD `cp` errors out when both `-r` and `-a` are given. This fixes `make install` on FreeBSD. Signed-off-by: Gleb Popov <6yearold@gmail.com> Change-Id: I5b325eb654ca52ad0f988e777c5bf5447d385ab5
This commit is contained in:
parent
2f8468c967
commit
63cf19a399
1 changed files with 1 additions and 1 deletions
|
@ -640,7 +640,7 @@ $(DIST_FOLDER)/admin/%: $(srcdir)/admin/%
|
|||
|
||||
install-data-hook:
|
||||
mkdir -p $(DESTDIR)$(pkgdatadir)/browser; \
|
||||
cp -ar dist/ $(DESTDIR)$(pkgdatadir)/browser/;
|
||||
cp -a dist/ $(DESTDIR)$(pkgdatadir)/browser/;
|
||||
|
||||
libs:
|
||||
@mkdir -p $(abs_srcdir)/libs
|
||||
|
|
Loading…
Reference in a new issue