You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Had the problem with 10.11/ cp -R...AppleHDA.kext. Solved with cp -X; tested dozens of times on several systems, no problem. 9 other instances in script, no problem. Have not been able to reproduce your error.
Current OS X: OS X El Capitan 10.11 GM
"El Capitan" )
sudo cp -X $gExtensionsDirectory/AppleHDA.kext $gDesktopDirectory/audio_ALC$gCodec-$gSysVer/AppleHDA-orig.kext
;;
should be
"El Capitan" )
sudo cp -XR $gExtensionsDirectory/AppleHDA.kext $gDesktopDirectory/audio_ALC$gCodec-$gSysVer/AppleHDA-orig.kext
;;
otherwise an error will occur that cp: /System/Library/AppleHDA.kext is a directory. (Will not copy)
The text was updated successfully, but these errors were encountered: