diff options
author | Björn Jacke <bj@sernet.de> | 2012-09-06 17:26:55 +0200 |
---|---|---|
committer | Bjoern Jacke <bj@sernet.de> | 2012-09-07 14:15:57 +0200 |
commit | d1623ec025efa74f31db1177727c8cc0d34d03b6 (patch) | |
tree | d2256425a113a725c682735c221eae283cb82234 /source3/wscript | |
parent | 1f61abd322b5d93ab4d3655ca8efff3545474f1f (diff) | |
download | samba-d1623ec025efa74f31db1177727c8cc0d34d03b6.tar.gz samba-d1623ec025efa74f31db1177727c8cc0d34d03b6.tar.bz2 samba-d1623ec025efa74f31db1177727c8cc0d34d03b6.zip |
s3:sysquota_xfs: check and include the right fs header file for xfs quotas
Diffstat (limited to 'source3/wscript')
-rwxr-xr-x | source3/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/wscript b/source3/wscript index 39a9b92f55..a496aaa306 100755 --- a/source3/wscript +++ b/source3/wscript @@ -1189,7 +1189,7 @@ main() { # For quotas on Veritas VxFS filesystems conf.CHECK_HEADERS('sys/fs/vx_quota.h') # For quotas on Linux XFS filesystems - conf.CHECK_HEADERS('linux/dqblk_xfs.h') + conf.CHECK_HEADERS('xfs/xqm.h') # For sys/quota.h and linux/quota.h conf.CHECK_HEADERS('sys/quota.h') # For quotas on BSD systems |