Skip to content

Commit

Permalink
Better to use cp -R rather than cp -r.
Browse files Browse the repository at this point in the history
The latter is ill-defined and doesn't work on OS X.
  • Loading branch information
vslavik committed Jan 9, 2011
1 parent 8720740 commit 8ef01e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distrib.makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ all: $(binary_arch) $(sources_arch)
$(binary_arch): $(binary_files)
@rm -f $(binary_base) $@
@mkdir $(binary_base)
cp -ra $(binary_files) $(binary_base)
cp -Ra $(binary_files) $(binary_base)
zip -9 -r $@ $(binary_base)
@rm -rf $(binary_base) $(binary_base).tar

Expand Down

0 comments on commit 8ef01e5

Please sign in to comment.