Fix the compile command in the examples
authorMiklos Szeredi <mszeredi@suse.cz>
Wed, 16 May 2012 15:31:33 +0000 (17:31 +0200)
committerMiklos Szeredi <mszeredi@suse.cz>
Wed, 16 May 2012 15:31:33 +0000 (17:31 +0200)
Reported by Luciano Dalle Ore

ChangeLog
example/cusexmp.c
example/fioc.c
example/fsel.c
example/fusexmp.c
example/fusexmp_fh.c
example/hello.c
example/hello_ll.c
example/null.c

index b9856ecc117ee39b25a1cfedb095414e78b7b025..a60ac1237bade6867eedf54d1d87a02c3844169d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,9 @@
        be linked to stubs in glibc.  So move -pthread from Libs.private
        to Libs in fuse.pc.  Reported by Werner Fink
 
+       * Fix the compile command in the examples. Reported by Luciano
+       Dalle Ore
+
 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
 
        * Released 2.9.0
index 900c98588d836c8a1f5b74b7e6d375f8b3fa37ad..01fcdf7d43708f3178d8a9753b2ce8d9905aec01 100644 (file)
@@ -6,7 +6,7 @@
   This program can be distributed under the terms of the GNU GPL.
   See the file COPYING.
 
-  gcc -Wall `pkg-config fuse --cflags --libs` cusexmp.c -o cusexmp
+  gcc -Wall cusexmp.c `pkg-config fuse --cflags --libs` -o cusexmp
 */
 
 #define FUSE_USE_VERSION 29
index d0dce15163b779e51b131d558bf2f34bffea2c8f..bee40b90625e7ba4f1498021f66c79082bc839b9 100644 (file)
@@ -6,7 +6,7 @@
   This program can be distributed under the terms of the GNU GPL.
   See the file COPYING.
 
-  gcc -Wall `pkg-config fuse --cflags --libs` fioc.c -o fioc
+  gcc -Wall fioc.c `pkg-config fuse --cflags --libs` -o fioc
 */
 
 #define FUSE_USE_VERSION 26
index f30ddd50d9fcaa55473db24104769450b09c10d2..9cf022137cd3807a81be4139816d2cd1ee456a26 100644 (file)
@@ -6,7 +6,7 @@
   This program can be distributed under the terms of the GNU GPL.
   See the file COPYING.
 
-  gcc -Wall `pkg-config fuse --cflags --libs` fsel.c -o fsel
+  gcc -Wall fsel.c `pkg-config fuse --cflags --libs` -o fsel
 */
 
 #define FUSE_USE_VERSION 29
index fa3fb4d8072d5bcbaa605e0485259c66463f168e..20a711678bc0c3f640d03879933e6781d95ed778 100644 (file)
@@ -6,7 +6,7 @@
   This program can be distributed under the terms of the GNU GPL.
   See the file COPYING.
 
-  gcc -Wall `pkg-config fuse --cflags --libs` fusexmp.c -o fusexmp
+  gcc -Wall fusexmp.c `pkg-config fuse --cflags --libs` -o fusexmp
 */
 
 #define FUSE_USE_VERSION 26
index e9524c6ce82ca3ac4a9775d8eb8c2e49fd3d8163..d79ff37927882160896a1d33f81dcb27e7a6cd7e 100644 (file)
@@ -6,7 +6,7 @@
   This program can be distributed under the terms of the GNU GPL.
   See the file COPYING.
 
-  gcc -Wall `pkg-config fuse --cflags --libs` -lulockmgr fusexmp_fh.c -o fusexmp_fh
+  gcc -Wall fusexmp_fh.c `pkg-config fuse --cflags --libs` -lulockmgr -o fusexmp_fh
 */
 
 #define FUSE_USE_VERSION 26
index bcde80a8b361232063956dd693daa95aa3913574..bcb6b4c53a2da79ad62e9e568fa4ac5f758c5f15 100644 (file)
@@ -5,7 +5,7 @@
   This program can be distributed under the terms of the GNU GPL.
   See the file COPYING.
 
-  gcc -Wall `pkg-config fuse --cflags --libs` hello.c -o hello
+  gcc -Wall hello.c `pkg-config fuse --cflags --libs` -o hello
 */
 
 #define FUSE_USE_VERSION 26
index 1d3a1a8d83b20a47b62882113d4f04071976372d..1405441e4f9e30b9b1333576517d494be48dd02a 100644 (file)
@@ -5,7 +5,7 @@
   This program can be distributed under the terms of the GNU GPL.
   See the file COPYING.
 
-  gcc -Wall `pkg-config fuse --cflags --libs` hello_ll.c -o hello_ll
+  gcc -Wall hello_ll.c `pkg-config fuse --cflags --libs` -o hello_ll
 */
 
 #define FUSE_USE_VERSION 26
index 08455860e7a4b386561d2792ee599d3abad7382a..b72cf4d3fb3a310adab08b0f78ab6bf4373503d8 100644 (file)
@@ -5,7 +5,7 @@
   This program can be distributed under the terms of the GNU GPL.
   See the file COPYING.
 
-  gcc -Wall `pkg-config fuse --cflags --libs` null.c -o null
+  gcc -Wall null.c `pkg-config fuse --cflags --libs` -o null
 */
 
 #define FUSE_USE_VERSION 26