]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfsprogs: use <>-style includes in installed headers
authorChristoph Hellwig <hch@lst.de>
Fri, 31 Jul 2015 04:50:52 +0000 (14:50 +1000)
committerDave Chinner <david@fromorbit.com>
Fri, 31 Jul 2015 04:50:52 +0000 (14:50 +1000)
Once installed these are system headers, so we need to use <>-style
include statements between them.

[dchinner: fix include/xfs creation as this changes include/xfs
           population dependencies]

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
include/platform_defs.h.in
include/xfs.h
include/xqm.h

index 9a1782cde2657df01a653e1c127c72e7a52618be..529c0a6f4ae05f1ac7239e301f8c5785118b9ecf 100644 (file)
@@ -69,15 +69,15 @@ typedef __u64       __bitwise       __be64;
 typedef struct filldir         filldir_t;
 
 #if defined(__linux__)
-#include "xfs/linux.h"
+#include <xfs/linux.h>
 #elif defined(__FreeBSD__)
-#include "xfs/freebsd.h"
+#include <xfs/freebsd.h>
 #elif defined(__FreeBSD_kernel__)
-#include "xfs/gnukfreebsd.h"
+#include <xfs/gnukfreebsd.h>
 #elif defined(__APPLE__)
-#include "xfs/darwin.h"
+#include <xfs/darwin.h>
 #elif defined(__sgi__) || defined(__sgi)
-#include "xfs/irix.h"
+#include <xfs/irix.h>
 #else
 # error unknown platform... have fun porting!
 #endif
index 0cb4fb8c75dd72a0e517b83e241c61cdb0fe0162..e32c4a8db43f434385a23fca63b94df618455eec 100644 (file)
@@ -33,8 +33,8 @@
 #ifndef __XFS_H__
 #define __XFS_H__
 
-#include "xfs/platform_defs.h"
-#include "xfs/xfs_types.h"
-#include "xfs/xfs_fs.h"
+#include <xfs/platform_defs.h>
+#include <xfs/xfs_types.h>
+#include <xfs/xfs_fs.h>
 
 #endif /* __XFS_H__ */
index 0b5dfa13e61e11e5e46df9d91e596e770ba43d30..47f58a049a157387eb75dfbe4733b7631a43e55e 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef __XQM_H__
 #define __XQM_H__
 
-#include "xfs/xfs.h"
+#include <xfs/xfs.h>
 
 /*
  * Disk quota - quotactl(2) commands for the XFS Quota Manager (XQM).