diff options
author | Patrick Monnerat <pm@datasphere.ch> | 2011-04-18 16:52:27 +0200 |
---|---|---|
committer | Patrick Monnerat <pm@datasphere.ch> | 2011-04-18 16:52:27 +0200 |
commit | e80b957789a93b480ec56c19b1be298394f1ce9c (patch) | |
tree | e5a96e0576e2989743b38d48551b8dd3e4735beb /packages | |
parent | 213939c8ba3f5e4b73871257208a6f646d967234 (diff) | |
download | curl-e80b957789a93b480ec56c19b1be298394f1ce9c.tar.gz |
OS400 pragma comment: replace (date) by (user, __DATE__) to include year.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/OS400/make-lib.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/OS400/make-lib.sh b/packages/OS400/make-lib.sh index b7f951b5a..9b3e335ab 100644 --- a/packages/OS400/make-lib.sh +++ b/packages/OS400/make-lib.sh @@ -11,8 +11,9 @@ cd "${TOPDIR}/lib" # Create and compile the identification source file. echo '#pragma comment(user, "libcurl version '"${LIBCURL_VERSION}"'")' > os400.c -echo '#pragma comment(date)' >> os400.c -echo '#pragma comment(copyright, "Copyright (C) 1998-2010 Daniel Stenberg et al. OS/400 version by P. Monnerat")' >> os400.c +echo '#pragma comment(user, __DATE__)' >> os400.c +echo '#pragma comment(user, __TIME__)' >> os400.c +echo '#pragma comment(copyright, "Copyright (C) 1998-2011 Daniel Stenberg et al. OS/400 version by P. Monnerat")' >> os400.c make_module OS400 os400.c LINK= # No need to rebuild service program yet. MODULES= |