Fedora 22 -- Git Broken 'tar format cmd'

Souldream

Vu+ Newbie
Code:
 tar: '--same-order' cannot be used with '-c'
| Try 'tar --help' or 'tar --usage' for more information.
| tar: This does not look like a tar archive
| tar: Exiting with failure status due to previous errors
NOTE: package quilt-native-0.51-r1: task do_populate_sysroot: Failed
 

Souldream

Vu+ Newbie
To fix this error with updated TAR cmd

Change all tar call with -ps to -p

Code:
From :
> - tar -cf - -C ${LOCALETREESRC}${base_libdir} -ps . | tar -xf - -C $treedir/${base_libdir}
To :
>+ tar -cf - -C ${LOCALETREESRC}${base_libdir} -p . | tar -xf - -C $treedir/${base_libdir}

And it fix TAR cmd problem on updated linux distro with "tar' cmd > 1.27

Attachement is fixed file, uncompress it and copy it over -> openvuplus/openembedded-core/meta/classes
 

Attachments

  • libc-package.bbclass.tgz
    4.1 KB · Views: 3
Top