Bug List: (This bug is not in your last search results)   Show last search results      Search page      Enter new bug
Bug#: 129642
Alias:
Product:
Component:
Status: RESOLVED
Resolution: DUPLICATE of bug 120403
Assigned To: Gentoo Linux bug wranglers <bug-wranglers@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Manuel McLure <manuel@mclure.org>
Add CC:
CC:
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 129642 depends on: Show dependency tree
Bug 129642 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)


Not eligible to see or edit group visibility for this bug.






View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2006-04-11 17:37 0000
The script /etc/autofs/auto.net contains the following line:

$SHOWMOUNT | LC_ALL=C sort +0 | \

The "+0" option is an option to sort that has been deprecated for some time and
appears to have been removed from sort in coreutils-5.94.

The correct line for the new sort (which should also work with old sort) is

$SHOWMOUNT | LC_ALL=C sort -k1 | \

------- Comment #1 From Manuel McLure 2006-04-11 17:46:40 0000 -------
After some more research, it seems like the "+0" command line option in old
sort really had no effect, so it may be better to just use:

$SHOWMOUNT | LC_ALL=C sort | \

------- Comment #2 From Manuel McLure 2006-04-11 18:39:06 0000 -------

*** This bug has been marked as a duplicate of 120403 ***

Bug List: (This bug is not in your last search results)   Show last search results      Search page      Enter new bug