mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-17 12:08:43 +00:00
36c45596c9
Fixed PR#107 (bad output with -V) inst.1, inst.desc, inst.rez, inst.c: Updated version number to 1.3
27 lines
694 B
Plaintext
27 lines
694 B
Plaintext
/*
|
|
* Copyright 1996-1997 Devin Reade <gdr@trenco.gno.org>.
|
|
* All rights reserved.
|
|
*
|
|
* For copying and distribution information, see the file "COPYING"
|
|
* accompanying this file.
|
|
*
|
|
* $Id: inst.rez,v 1.6 1999/01/16 19:30:56 gdr-ftp Exp $
|
|
*/
|
|
|
|
#include "Types.Rez"
|
|
#include "builddate.rez"
|
|
|
|
resource rVersion (0x1, purgeable3, nocrossbank) {
|
|
|
|
{ 1, 3, 0, /* version; also in inst.c, inst.1, and inst.desc */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 /* non-final release number */
|
|
},
|
|
verUS,
|
|
"install",
|
|
"Unix-style install program --\n"
|
|
" copies files and creates directories\n"
|
|
"Devin Reade\n"
|
|
BUILD_DATE
|
|
};
|