From: Zac Medico Date: Sun, 22 Aug 2010 23:58:27 +0000 (-0700) Subject: Don't copy the src directory because it doesn't exist anymore. X-Git-Tag: v2.2_rc68~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c683ee0d520e86d896e28d7699cd5aeb3c305c4e;p=portage.git Don't copy the src directory because it doesn't exist anymore. --- diff --git a/mkrelease.sh b/mkrelease.sh index e00d0150c..d13a15f99 100755 --- a/mkrelease.sh +++ b/mkrelease.sh @@ -65,7 +65,7 @@ git archive --format=tar $TREE_ISH | \ tar -xf - -C "$SOURCE_DIR" || die "git archive failed" echo ">>> Building release tree" -cp -a "${SOURCE_DIR}/"{bin,cnf,doc,man,pym,src} "${RELEASE_DIR}/" || die "directory copy failed" +cp -a "${SOURCE_DIR}/"{bin,cnf,doc,man,pym} "${RELEASE_DIR}/" || die "directory copy failed" cp "${SOURCE_DIR}/"{DEVELOPING,NEWS,RELEASE-NOTES,TEST-NOTES} \ "${RELEASE_DIR}/" || die "file copy failed"