diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-10-14 14:25:07 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-10-14 14:25:07 -0400 |
commit | 806811bf2d72827d3031bfcd5dbab1e82324d34e (patch) | |
tree | bef24882ac9b79fa3854de08889baf2e5afd8669 /recipes/meta | |
parent | d74ca99871974a6efe3e024bfb6297e37c6291e3 (diff) |
angstrom: clean ups of the external toolchain support
Diffstat (limited to 'recipes/meta')
-rw-r--r-- | recipes/meta/external-toolchain-generic.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/meta/external-toolchain-generic.bb b/recipes/meta/external-toolchain-generic.bb index 6e87e88954..73f823f192 100644 --- a/recipes/meta/external-toolchain-generic.bb +++ b/recipes/meta/external-toolchain-generic.bb @@ -43,8 +43,8 @@ do_stage() { cp -pPRr ${prefix}/deb/* ${DEPLOY_DIR_DEB}/ fi -# if [ -d ${prefix}/pstage -a "x${DEPLOY_DIR_PSTAGE}" != "x" ]; then -# install -d ${DEPLOY_DIR_PSTAGE}/ -# cp -pPRr ${prefix}/pstage/* ${DEPLOY_DIR_PSTAGE}/ -# fi + if [ -d ${prefix}/pstage -a "x${DEPLOY_DIR_PSTAGE}" != "x" ]; then + install -d ${DEPLOY_DIR_PSTAGE}/ + cp -pPRr ${prefix}/pstage/* ${DEPLOY_DIR_PSTAGE}/ + fi } |