M s3fs/src/s3fs.cpp

=========================
Removed extra space in the message emitted by --version


M    s3fs/src/Makefile.am
==========================
Added the .h files to the s3fs_SOURCES. These files
were not being included in the .tar.gz file when
"make dist" was being executed.  This was sourced
as an error with the "make distcheck" target.




git-svn-id: http://s3fs.googlecode.com/svn/trunk@217 df820570-a93a-0410-bd06-b72b767a4274
This commit is contained in:
mooredan@suncup.net 2010-10-24 22:23:09 +00:00
parent 184a31d676
commit 6eb6b1e238
2 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,6 @@ bin_PROGRAMS=s3fs
AM_CPPFLAGS = $(DEPS_CFLAGS)
s3fs_SOURCES = s3fs.cpp string_util.cpp
s3fs_SOURCES = s3fs.cpp s3fs.h string_util.cpp string_util.h
s3fs_LDADD = $(DEPS_LIBS)

View File

@ -1624,7 +1624,7 @@ int main(int argc, char *argv[]) {
for (int i = 1; i < argc; ++i) {
if (strcmp(argv[i], "--version") == 0) {
cout << "Amazon Simple Storage Service File System " << VERSION << endl;
cout << "Amazon Simple Storage Service File System " << VERSION << endl;
cout << "Copyright (C) 2010 Randy Rizun <rrizun@gmail.com>" << endl;
cout << "License GPL2: GNU GPL version 2 <http://gnu.org/licenses/gpl.html>" << endl;
cout << "This is free software: you are free to change and redistribute it." << endl;