From 923f4aeb8f1a4987db2d709006aeac09202d2a46 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Thu, 24 May 2007 17:59:30 +0100 Subject: [PATCH] WAF: correct values of VERSION and APPNAME, for waf dist --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index 3c60292fd..046a40bf5 100644 --- a/wscript +++ b/wscript @@ -10,8 +10,8 @@ import pproc as subprocess Params.g_autoconfig = 1 # the following two variables are used by the target "waf dist" -VERSION = '3.0.1' -APPNAME = 'ns-3-waf' +VERSION = file("VERSION").read().strip() +APPNAME = 'ns' # these variables are mandatory ('/' are converted automatically) srcdir = '.'