CiviDist fails on BSD flavor of 'cp' with '-r -p' switch to '-R -p' #14523
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview
civicrm/civicrm-buildkit#452
When building Joomla tarballs on OSX the build will fail on the alternate Joomla install zip generation.
Specifically this occurs at https://github.com/civicrm/civicrm-core/blob/master/distmaker/dists/joomla_php5.sh#L40
cp -r -p civicrm com_civicrm/admin/civicrm fails on the symlinked file vendor/pear/log/README.rst
Changing the command to cp -R -p civicrm com_civicrm/admin/civicrm allows both cividist and distmaker to complete successfully.
Before
cividist fails for joomla-alt om MacOSX
After
cividist will complete on all platforms.
Technical Details
Switch to GNU style option of '-R' that is supported on both GNU and BSD
Comments
There will need to be diligent testing on all platforms, MACOSX, linux, bknx after merge