Deleted Added
full compact
Makefile (68987) Makefile (70419)
1# $FreeBSD: head/release/Makefile 68987 2000-11-21 04:37:30Z marcel $
1# $FreeBSD: head/release/Makefile 70419 2000-12-28 10:32:02Z peter $
2#
3# make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ]
4#
5# Where "/some/dir" is the pathname of a directory on a some
6# filesystem with at least 1000MB of free space, "somename" is what
7# you want the release to call itself and, optionally, which CVS "tag"
8# name should be used when checking out the sources to build the release
9# (default is HEAD).

--- 421 unchanged lines hidden (view full) ---

431 @for i in ${DISTRIBUTIONS}; do \
432 if [ -f ${.CURDIR}/scripts/$${i}-make.sh ]; then \
433 echo -n "Running $$i dist creation script... "; \
434 env OBJFORMAT=${OBJFORMAT} RD=${RD} sh ${.CURDIR}/scripts/$${i}-make.sh || echo "$$i distribution script returned bad status."; \
435 echo "Done."; \
436 fi \
437 done \
438
2#
3# make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ]
4#
5# Where "/some/dir" is the pathname of a directory on a some
6# filesystem with at least 1000MB of free space, "somename" is what
7# you want the release to call itself and, optionally, which CVS "tag"
8# name should be used when checking out the sources to build the release
9# (default is HEAD).

--- 421 unchanged lines hidden (view full) ---

431 @for i in ${DISTRIBUTIONS}; do \
432 if [ -f ${.CURDIR}/scripts/$${i}-make.sh ]; then \
433 echo -n "Running $$i dist creation script... "; \
434 env OBJFORMAT=${OBJFORMAT} RD=${RD} sh ${.CURDIR}/scripts/$${i}-make.sh || echo "$$i distribution script returned bad status."; \
435 echo "Done."; \
436 fi \
437 done \
438
439 # Create symlinks for the MD5-based crypt lib, too. The
440 # automatically created links still point to the DES stuff,
441 # which went into its own distribution.
442 for i in ${RD}/trees/bin/usr/lib/libscrypt* ; do \
443 c=`echo $$i | sed -e 's/libscrypt/libcrypt/'` ; \
444 rm -f $$c ; \
445 ln -s `basename $$i` $$c ; \
446 done
447
448 # Remove all the directories we don't need.
449 -cd ${RD}/trees && \
450 find ${OTHER_DISTS} ${COMPAT_DISTS} ${CRYPTO_DISTS} -depth -type d -print | xargs rmdir
451 touch release.5
452
453#
454# --==## Package up the tarballs from assembled trees ##==--
455#

--- 451 unchanged lines hidden ---
439 # Remove all the directories we don't need.
440 -cd ${RD}/trees && \
441 find ${OTHER_DISTS} ${COMPAT_DISTS} ${CRYPTO_DISTS} -depth -type d -print | xargs rmdir
442 touch release.5
443
444#
445# --==## Package up the tarballs from assembled trees ##==--
446#

--- 451 unchanged lines hidden ---