Bug 194773 - x11-wm/Makefile has missorted SUBDIR - crashes ports-mgt/mkreadmes
Summary: x11-wm/Makefile has missorted SUBDIR - crashes ports-mgt/mkreadmes
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Some People
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-11-03 04:27 UTC by CraigW
Modified: 2014-11-14 12:13 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description CraigW 2014-11-03 04:27:13 UTC
x11-wm/Makefile has missorted SUBDIR.
This crashes ports-mgt/mkreadmes.

Patching it as below will fix the sorting error and let mkreadmes finish running.

pwd
/usr/ports/x11-wm


# diff -u Makefile Makefile.new
--- Makefile	2014-11-02 22:10:43.408225900 -0600
+++ Makefile.new	2014-11-02 22:10:34.669795963 -0600
@@ -107,8 +107,8 @@
     SUBDIR += lwm
     SUBDIR += lxmed
     SUBDIR += lxsession
-    SUBDIR += matwm2
     SUBDIR += marco
+    SUBDIR += matwm2
     SUBDIR += mcwm
     SUBDIR += metacity
     SUBDIR += musca
Comment 1 commit-hook freebsd_committer freebsd_triage 2014-11-14 12:05:56 UTC
A commit references this bug:

Author: marino
Date: Fri Nov 14 12:04:56 UTC 2014
New revision: 372559
URL: https://svnweb.freebsd.org/changeset/ports/372559

Log:
  x11-wm/Makefile: Fix sorting

  Apparently ports-mgmt/mkreadmes is delicate and can't handle mis-sorted
  category makefiles.

  PR:		194773
  Submitted by:	Craig Wiesen

Changes:
  head/x11-wm/Makefile
Comment 2 John Marino freebsd_committer freebsd_triage 2014-11-14 12:13:13 UTC
Thanks!