summaryrefslogtreecommitdiff
path: root/source3/utils/wscript_build
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2017-02-03 14:57:45 +0100
committerJeremy Allison <jra@samba.org>2017-02-10 22:24:59 +0100
commit32116e015b14cfa697569fce01daf8cde3285970 (patch)
treefdf002ea390a754a8546b5e80eda0058eba69455 /source3/utils/wscript_build
parent738797d8ad6908de457786cc948dcde151e2b9e1 (diff)
downloadsamba-32116e015b14cfa697569fce01daf8cde3285970.tar.gz
s3/util: mvxattr, a tool to rename extended attributes
Usage: mvxattr -s STRING -d STRING PATH [PATH ...] -s, --from=STRING xattr source name -d, --to=STRING xattr destination name -l, --follow-symlinks follow symlinks, the default is to ignore them -p, --print print files where the xattr got renamed -v, --verbose print files as they are checked -f, --force force overwriting of destination xattr Help options: -?, --help Show this help message --usage Display brief usage message Bug: https://bugzilla.samba.org/show_bug.cgi?id=12490 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Fri Feb 10 22:24:59 CET 2017 on sn-devel-144
Diffstat (limited to 'source3/utils/wscript_build')
-rw-r--r--source3/utils/wscript_build8
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/utils/wscript_build b/source3/utils/wscript_build
index 0b9356a7980..4295f859249 100644
--- a/source3/utils/wscript_build
+++ b/source3/utils/wscript_build
@@ -249,3 +249,11 @@ bld.SAMBA3_BINARY('net',
trusts_util
IDMAP_AUTORID_TDB
''')
+
+bld.SAMBA3_BINARY('mvxattr',
+ source='mvxattr.c',
+ deps='''
+ talloc
+ popt_samba3
+ ''',
+ enabled=bld.env.build_mvxattr)