Revision
81451
Author
wsiegrist@apple.com
Date
2011-07-30 19:59:44 -0700 (Sat, 30 Jul 2011)

Log Message

Use the right copy of trunk to build index. Do not use nobody:nobody.

Modified Paths

Diff

Modified: trunk/base/portmgr/jobs/mprsyncup (81450 => 81451)


--- trunk/base/portmgr/jobs/mprsyncup	2011-07-31 01:33:28 UTC (rev 81450)
+++ trunk/base/portmgr/jobs/mprsyncup	2011-07-31 02:59:44 UTC (rev 81451)
@@ -43,7 +43,6 @@
 
 # Paths we'll work on:
 ROOT=/var/tmp/macports
-TMPDIR=mp_trunk/base
 PREFIX=${ROOT}/opt/local
 TCLPKG=${PREFIX}/lib/tcl
 SVNROOT=/var/tmp/macports
@@ -60,9 +59,6 @@
 # copy new index of this platform to old index location for MP v1.8 compatability
 OLD_INDEX_PLATFORM="9_i386"
 
-MP_USER=nobody
-MP_GROUP=nobody
-
 # Sources information:
 SVNURL=https://svn.macports.org/repository/macports
 RELEASE_URL_FILE=config/RELEASE_URL
@@ -120,13 +116,11 @@
 # generate platform-specific indexes
 pushd ${PORTS} >> /dev/null
 # build MP trunk in a private location for indexing
-pushd ${ROOT}/${TMPDIR} >> /dev/null
+pushd ${TBASE} >> /dev/null
 ${MKDIR} -p ${TCLPKG}
 ./configure \
     --prefix=${PREFIX} \
-    --with-tclpackage=${TCLPKG} \
-    --with-install-user=${MP_USER} \
-    --with-install-group=${MP_GROUP}
+    --with-tclpackage=${TCLPKG}
 make clean
 make
 make install