svn commit: r411812 - head/Tools/scripts

John Marino marino at FreeBSD.org
Thu Mar 24 21:33:37 UTC 2016


Author: marino
Date: Thu Mar 24 21:33:36 2016
New Revision: 411812
URL: https://svnweb.freebsd.org/changeset/ports/411812

Log:
  redundant-opt-files script: Fix deleted port output
  
  The last change was flawed; for deleted ports it was writing out the
  origin, but it should be writing out the appropriate ports cache
  database directory.

Modified:
  head/Tools/scripts/redundant-opt-files.sh

Modified: head/Tools/scripts/redundant-opt-files.sh
==============================================================================
--- head/Tools/scripts/redundant-opt-files.sh	Thu Mar 24 20:55:15 2016	(r411811)
+++ head/Tools/scripts/redundant-opt-files.sh	Thu Mar 24 21:33:36 2016	(r411812)
@@ -40,7 +40,7 @@ identical_options() {
    local origin=$(catport $1)
    if [ ! -d ${origin} ]; then
        # origin no longer exists, list it anyway without testing further
-       echo ${origin}
+       echo $1
        return
    fi
    local selected_pristine=$(/usr/bin/make -C ${origin} \


More information about the svn-ports-head mailing list