summaryrefslogtreecommitdiffstats
path: root/product.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-03-14 17:42:02 -0400
committerChris Lumens <clumens@redhat.com>2008-03-14 17:42:32 -0400
commit3e7ccb8ade02780e704c2fa969ebfe256d26258e (patch)
tree6085a594d520b8bccc7f86da4950a9c590caf303 /product.py
parentd6582f429164789639f8c68f6eeed6c3dcafb032 (diff)
downloadanaconda-3e7ccb8ade02780e704c2fa969ebfe256d26258e.tar.gz
anaconda-3e7ccb8ade02780e704c2fa969ebfe256d26258e.tar.xz
anaconda-3e7ccb8ade02780e704c2fa969ebfe256d26258e.zip
.buildstamp no longer contains productPath, so change the default (#437509).
Diffstat (limited to 'product.py')
-rw-r--r--product.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/product.py b/product.py
index 1ebd6ebf9..52a8a246f 100644
--- a/product.py
+++ b/product.py
@@ -28,11 +28,11 @@ elif os.environ.has_key("PRODBUILDPATH") and \
path = os.environ["PRODBUILDPATH"]
else:
path = None
-
+
productStamp = ""
productName = "anaconda"
productVersion = "bluesky"
-productPath = "anaconda"
+productPath = "Packages"
productArch = None
bugUrl = "your distribution provided bug reporting tool."
@@ -46,8 +46,6 @@ if path is not None:
productName = lines[1][:-1]
productVersion = lines[2][:-1]
if len(lines) >= 4:
- productPath = lines[3][:-1]
- if len(lines) >= 5:
bugUrl = lines[4][:-1]
if os.environ.has_key("ANACONDA_PRODUCTNAME"):