Let's not include the time of the build in the binary. The date is enough.
[synfig.git] / synfig-core / trunk / src / tool / main.cpp
index 7fa7357..77281c8 100644 (file)
@@ -332,7 +332,7 @@ void display_help(int amount)
                Argument("--start-time","<time>",_("Set the starting time"));
                Argument("--end-time","<time>",_("Set the ending time"));
                Argument("--dpi","<res>",_("Set the physical resolution (dots-per-inch)"));
-               Argument("--dpi-x","<res>",_("Set the physical X resolution (dots-per-inch"));
+               Argument("--dpi-x","<res>",_("Set the physical X resolution (dots-per-inch)"));
                Argument("--dpi-y","<res>",_("Set the physical Y resolution (dots-per-inch)"));
 
                Argument("--list-canvases",NULL,_("List the exported canvases in the composition"));
@@ -387,7 +387,7 @@ int process_global_flags(arg_list_t &arg_list)
                if(*iter == "--info")
                {
                        cout<<PACKAGE"-"VERSION<<endl;
-                       cout<<"Compiled on "__DATE__ " at "__TIME__;
+                       cout<<"Compiled on "__DATE__ /* " at "__TIME__ */;
 #ifdef __GNUC__
                        cout<<" with GCC "<<__VERSION__;
 #endif