diff options
author | Rob Landley <rob@landley.net> | 2015-04-17 02:46:11 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-04-17 02:46:11 -0500 |
commit | 90afbad4c1f115d5363fe99eb797d2458cd298a0 (patch) | |
tree | 9f4a491d440272389b332908eb4dc34d8a9d8196 /main.c | |
parent | 17499c3731273d2cffdd96d011cf8ed6aca103da (diff) | |
download | toybox-90afbad4c1f115d5363fe99eb797d2458cd298a0.tar.gz toybox-90afbad4c1f115d5363fe99eb797d2458cd298a0.tar.bz2 toybox-90afbad4c1f115d5363fe99eb797d2458cd298a0.zip |
Make toybox --version use the "git describe" info if it's available.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -5,7 +5,9 @@ #include "toys.h" +#ifndef TOYBOX_VERSION #define TOYBOX_VERSION "0.5.2" +#endif // Populate toy_list[]. |