<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
--></style>
</head>
<body class='hmmessage'>
Olaf, any chance you can limit what files are picked up to the $TARGET and src directories?<br>The I386_DARWIN/AMD64_DARWIN packages I made contain each of other's files<br>due to just picking up "everything".<br><br>Maybe:<br><br>iff -u -r1.26.2.51 make-dist.sh<br>--- make-dist.sh    17 Apr 2010 03:55:43 -0000    1.26.2.51<br>+++ make-dist.sh    17 Apr 2010 08:05:13 -0000<br>@@ -338,12 +338,16 @@<br>   ) > collection-${c}.html<br>   echo "collection-${c}.html"<br>   ARCHIVE="${STAGE}/cm3-bin-ws-${c}-${TARGET}-${CM3VERSION}-${DS}.tgz"<br>+  a=""<br>+  for b in ${PKGS}; do<br>+    a="${a} ${b}/src ${b}/${TARGET}"<br>+  done<br>   if [ -z "${NOARCHIVE}" -a "${c}" != "min" ]; then<br>     "${TAR}"  --exclude '*.o' --exclude '*.mo' --exclude '*.io' \<br>       --exclude '*/CVS/*' --exclude '*/CVS' --exclude '*~' \<br>       --exclude '*.tar.*' --exclude '*.tgz' --exclude "*/${TARGET}/gcc" \<br>       --exclude "*/${TARGET}/*/*" \<br>-      -czf "${ARCHIVE}" collection-${c}.html install.sh setup.txt setup.cmd ${PKGS}<br>+      -czf "${ARCHIVE}" collection-${c}.html install.sh setup.txt setup.cmd ${a}<br>       ls -l "${ARCHIVE}"<br>   fi<br> done<br><br><br> - Jay<br>                                        </body>
</html>