diff options
Diffstat (limited to 'trunk/src/createpkg')
-rw-r--r-- | trunk/src/createpkg | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/trunk/src/createpkg b/trunk/src/createpkg index 49b3cfb..42c4043 100644 --- a/trunk/src/createpkg +++ b/trunk/src/createpkg @@ -611,14 +611,7 @@ if [ $MOVE_BIN_PACKAGE -eq $on ]; then # Move package's slack-required to binary repository if [ $MOVE_SLACK_REQUIRED -eq $on ]; then if [ ! -z "$SLACK_REQUIRED" ]; then - cp $SLACK_REQUIRED $NEW_REPOS/$PACKAGE.slack-required - if [ -d "$NEW_REPOS/.svn" ] && ! svn_check $NEW_REPOS/$PACKAGE.slack-required; then - cwd="`pwd`" - cd $NEW_REPOS - chown_svn $MAKEPKG_REPOS && chgrp_svn $MAKEPKG_REPOS - su_svn add $PACKAGE.slack-required - cd $cwd - fi + svn_copy $SLACK_REQUIRED $NEW_REPOS/$PACKAGE.slack-required fi fi |