Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 6 Jun 1995 03:56:36 -0700
From:      Satoshi Asami <asami>
To:        CVS-commiters, cvs-share
Subject:   cvs commit: src/share/mk bsd.port.mk
Message-ID:  <199506061056.DAA15061@freefall.cdrom.com>

next in thread | raw e-mail | index | archive | help
asami       95/06/06 03:56:35

  Modified:    share/mk  bsd.port.mk
  Log:
  Renamed the default package repository ".../packages/.packages" to
  ".../packages/All".  The "all" category that was automatically added
  for every package is gone.
  
  Note that bsd.port.mk requires category names to start with lowercase
  names, otherwise it may get confused.
  
  Reviewed by:	jkh
  
  By the way, here is a small script to convert your local package
  hierarchy.  Run it in bash, as /bin/sh not only will bark at the
  $(.) command substitution but will also botch the [a-z]*/*.tgz
  expansion (long-standing and annoying bug, reported before).
  
  cd /usr/ports/packages
  mv .packages All
  for i in [a-z]*/*.tgz; do
    j=$(basename $i)
    /bin/rm $i
    ln -s ../All/$j $i
  done



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199506061056.DAA15061>