Message ID | 20140415175424.68a318e2@notabene.brown (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 04/15/2014 03:54 AM, NeilBrown wrote: > > The kernel "knows" this lives in /sbin, so just like > mount.nfs and osd_login, it must unconditionally be installed > there. > > Signed-off-by: NeilBrown <neilb@suse.de> Committed... steved. > > diff --git a/utils/nfsdcltrack/Makefile.am b/utils/nfsdcltrack/Makefile.am > index a860ffb82e2c..7524295f394e 100644 > --- a/utils/nfsdcltrack/Makefile.am > +++ b/utils/nfsdcltrack/Makefile.am > @@ -1,5 +1,9 @@ > ## Process this file with automake to produce Makefile.in > > +# These binaries go in /sbin (not /usr/sbin), and that cannot be > +# overridden at config time. The kernel "knows" the /sbin name. > +sbindir = /sbin > + > man8_MANS = nfsdcltrack.man > EXTRA_DIST = $(man8_MANS) > > -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/utils/nfsdcltrack/Makefile.am b/utils/nfsdcltrack/Makefile.am index a860ffb82e2c..7524295f394e 100644 --- a/utils/nfsdcltrack/Makefile.am +++ b/utils/nfsdcltrack/Makefile.am @@ -1,5 +1,9 @@ ## Process this file with automake to produce Makefile.in +# These binaries go in /sbin (not /usr/sbin), and that cannot be +# overridden at config time. The kernel "knows" the /sbin name. +sbindir = /sbin + man8_MANS = nfsdcltrack.man EXTRA_DIST = $(man8_MANS)
The kernel "knows" this lives in /sbin, so just like mount.nfs and osd_login, it must unconditionally be installed there. Signed-off-by: NeilBrown <neilb@suse.de>