Revision 9bb57c0b119ee75c9e49842a686c0ca07970e37c authored by Colin Percival on 25 January 2010, 23:48:47 UTC, committed by Colin Percival on 25 January 2010, 23:48:47 UTC
to HEAD in r185029; but this is an "inspired by" commit rather than a
literal merge, since this region of code in HEAD has other non-MFCable
changes.

The namei lookups this unbreaks are required for ZFS extended attributes;
prior to this commit, an attempt to look up (list, read, write, delete)
extended attributes would be handled as an attempt to look up a file in
the current directory if an extended attribute directory existed ("at vp"
was mishandled as "right here").

Reviewed by:	jhb
Approved by:	re (kib)
Found by:	Henrik Wiest & libarchive
1 parent 0ddd204
Raw File
Make.desc.X
# Makefile for .desc files

# This makefile is the prototype for "Make.desc", which is used by
# top's Configure script to build .desc files and the SYNOPSIS file.
# Configure then uses these files to ask appropriate questions.

# Written by William LeFebvre, Group sys Consulting
#	     (formerly of Northwestern University and Rice University)

# DO NOT EDIT "Make.desc"!!!  Make changes to "Make.desc.X",
# then "make veryclean", then run "Configure".

# The list of .desc files will be inserted after this next line:
DESCS=\

.SUFFIXES: .desc

.c.desc:
	sed -e '/^$$/,$$d' -e 's,^[/ *]*,,' $< > $@

all: SYNOPSIS

SYNOPSIS: $(DESCS)
	grep SYNOPSIS: $(DESCS) | sed -e 's@^machine/m_@@' -e 's@.desc:.[^:]*: *@:@' >SYNOPSIS
back to top