Skip to content

Commit

Permalink
Imprevements in tasks
Browse files Browse the repository at this point in the history
* Improvements in install task.
* Improvements in manifest task.
* Added tasks for handle tarball file.
  • Loading branch information
Hallison Batista authored and Hallison Batista committed Nov 16, 2010
1 parent 6d1b0f7 commit a6a4e1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Bakefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ task install {

status "Copying shared files"
for src in share/* share/*/* share/*/*/*; do
test -d ${src} && run mkdir -p ${PREFIX}/${src}
test -f ${src} && run cp -p ${src} ${PREFIX}/${src}
test -d ${src} && run install -d ${PREFIX}/${src}
test -f ${src} && run install ${src} ${PREFIX}/${src}
done

status "Copying binaries"
Expand Down

0 comments on commit a6a4e1e

Please sign in to comment.