Skip to content

Commit

Permalink
Merge pull request #42 from hpc/sikich1/sync
Browse files Browse the repository at this point in the history
dcmp --sync option
  • Loading branch information
Danielle Sikich committed Jun 14, 2017
2 parents 0e890ca + 297dc9e commit 3736679
Show file tree
Hide file tree
Showing 26 changed files with 2,493 additions and 2,549 deletions.
1 change: 1 addition & 0 deletions buildme
Expand Up @@ -43,6 +43,7 @@ export LDFLAGS="-Wl,-rpath,${topdir}/install/lib -L${topdir}/install/lib -lcircl
--prefix=$installdir \ --prefix=$installdir \
--disable-silent-rules \ --disable-silent-rules \
--with-dtcmp=$installdir && \ --with-dtcmp=$installdir && \
make uninstall && \
make VERBOSE=1 && \ make VERBOSE=1 && \
make VERBOSE=1 install make VERBOSE=1 install
if [ $? -ne 0 ] ; then if [ $? -ne 0 ] ; then
Expand Down
1 change: 0 additions & 1 deletion configure.ac
Expand Up @@ -85,7 +85,6 @@ AC_CONFIG_FILES([Makefile \
src/dbcast/Makefile \ src/dbcast/Makefile \
src/dchmod/Makefile \ src/dchmod/Makefile \
src/dcmp/Makefile \ src/dcmp/Makefile \
src/dcp1/Makefile \
src/dcp/Makefile \ src/dcp/Makefile \
src/ddup/Makefile \ src/ddup/Makefile \
src/dfilemaker/Makefile \ src/dfilemaker/Makefile \
Expand Down
2 changes: 1 addition & 1 deletion experimental/dsh/dsh.c
Expand Up @@ -1867,7 +1867,7 @@ int main(int argc, char** argv)
* input file */ * input file */
if (walk) { if (walk) {
/* walk list of input paths */ /* walk list of input paths */
mfu_param_path_walk(numpaths, paths, walk_stat, flist, dir_perm); mfu_flist_walk_param_paths(numpaths, paths, walk_stat, dir_perm, flist);
} }
else { else {
/* read list from file */ /* read list from file */
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
@@ -1 +1 @@
SUBDIRS = common dbcast dcmp dchmod dcp1 dcp ddup dfilemaker drm dstripe dwalk SUBDIRS = common dbcast dcmp dchmod dcp ddup dfilemaker drm dstripe dwalk
9 changes: 3 additions & 6 deletions src/common/Makefile.am
Expand Up @@ -15,13 +15,12 @@ include_HEADERS = \
mfu_io.h \ mfu_io.h \
mfu_param_path.h \ mfu_param_path.h \
mfu_path.h \ mfu_path.h \
mfu_util.h \ mfu_util.h
common.h \
handle_args.h


libmfu_la_SOURCES = \ libmfu_la_SOURCES = \
mfu_flist.c \ mfu_flist.c \
mfu_flist_chunk.c \ mfu_flist_chunk.c \
mfu_flist_copy.c \
mfu_flist_io.c \ mfu_flist_io.c \
mfu_flist_remove.c \ mfu_flist_remove.c \
mfu_flist_sort.c \ mfu_flist_sort.c \
Expand All @@ -31,9 +30,7 @@ libmfu_la_SOURCES = \
mfu_param_path.c \ mfu_param_path.c \
mfu_path.c \ mfu_path.c \
mfu_util.c \ mfu_util.c \
strmap.c \ strmap.c
common.c \
handle_args.c


libmfu_la_CPPFLAGS = \ libmfu_la_CPPFLAGS = \
$(MPI_CFLAGS) \ $(MPI_CFLAGS) \
Expand Down

0 comments on commit 3736679

Please sign in to comment.