Skip to content
Snippets Groups Projects
Commit 3dc9c6d3 authored by Phil Schwan's avatar Phil Schwan
Browse files

- Fix objdir != srcdir build problem

- Remove unused variable from b_1414
parent ff7ddd7d
No related branches found
No related tags found
No related merge requests found
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
# This code is issued under the GNU General Public License. # This code is issued under the GNU General Public License.
# See the file COPYING in this distribution # See the file COPYING in this distribution
# ../ for <portals/*.h>, ../../ for <config.h> # $(srcdir)/../ for <portals/*.h>, ../../ for generated <config.h>
COMPILE = $(CC) -Wall -g -I$(srcdir)/../include -I$(srcdir)/../../include COMPILE = $(CC) -Wall -g -I$(srcdir)/../include -I../../include
LINK = $(CC) -o $@ LINK = $(CC) -o $@
if LIBLUSTRE if LIBLUSTRE
......
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
# This code is issued under the GNU General Public License. # This code is issued under the GNU General Public License.
# See the file COPYING in this distribution # See the file COPYING in this distribution
# ../ for <portals/*.h>, ../../ for <config.h> # $(srcdir)/../ for <portals/*.h>, ../../ for generated <config.h>
COMPILE = $(CC) -Wall -g -I$(srcdir)/../include -I$(srcdir)/../../include COMPILE = $(CC) -Wall -g -I$(srcdir)/../include -I../../include
LINK = $(CC) -o $@ LINK = $(CC) -o $@
if LIBLUSTRE if LIBLUSTRE
......
...@@ -86,7 +86,6 @@ static int lfs_setstripe(int argc, char **argv) ...@@ -86,7 +86,6 @@ static int lfs_setstripe(int argc, char **argv)
long st_size; long st_size;
int st_offset, st_count; int st_offset, st_count;
char *end; char *end;
struct stat statbuf;
if (argc != 5) if (argc != 5)
return CMD_HELP; return CMD_HELP;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment