summaryrefslogtreecommitdiff
path: root/source3/wscript
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2010-05-28 14:35:01 +0200
committerKai Blin <kai@samba.org>2010-05-28 14:35:45 +0200
commit4eba4b07c6645cf7748b827d7e37326383e91d7f (patch)
tree39b98effb334159ed28649d91df1c32a64c83ccc /source3/wscript
parent93ac516e15ab771b6ed4eeacc556a2ec916387bb (diff)
downloadsamba-4eba4b07c6645cf7748b827d7e37326383e91d7f.tar.gz
samba-4eba4b07c6645cf7748b827d7e37326383e91d7f.tar.bz2
samba-4eba4b07c6645cf7748b827d7e37326383e91d7f.zip
s3-waf: Match the defines from the autotools build on PACKAGE_*
Diffstat (limited to 'source3/wscript')
-rw-r--r--source3/wscript10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/wscript b/source3/wscript
index 7e39a60580..73e00d1b09 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -53,12 +53,12 @@ def set_options(opt):
def configure(conf):
from samba_utils import TO_LIST
- conf.DEFINE('PACKAGE_NAME', 'samba', quote=True)
- conf.DEFINE('PACKAGE_STRING', 'Samba ' + version.STRING, quote=True)
+ conf.DEFINE('PACKAGE_NAME', 'Samba', quote=True)
+ conf.DEFINE('PACKAGE_STRING', 'Samba %s' % version.MAJOR, quote=True)
conf.DEFINE('PACKAGE_TARNAME', 'samba', quote=True)
- conf.DEFINE('PACKAGE_URL', "http://www.samba.org/", quote=True)
- conf.DEFINE('PACKAGE_VERSION', version.STRING, quote=True)
- conf.DEFINE('PACKAGE_BUGREPORT', 'http://bugzilla.samba.org/', quote=True)
+ conf.DEFINE('PACKAGE_URL', "", quote=True)
+ conf.DEFINE('PACKAGE_VERSION', "%s" % version.MAJOR, quote=True)
+ conf.DEFINE('PACKAGE_BUGREPORT', 'samba-technical@samba.org', quote=True)
conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1)
conf.DEFINE('_SAMBA_BUILD_', version.MAJOR, add_to_cflags=True)