From 0c46a6d5cb2f5f99bc8071189bcb6383bded36f9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Tue, 24 Mar 1998 20:41:51 -0800
Subject: [PATCH] bugfix

Rev: bin/export.pike:1.16
---
 bin/export.pike | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/bin/export.pike b/bin/export.pike
index bdc6ff5f62..3d34106d45 100755
--- a/bin/export.pike
+++ b/bin/export.pike
@@ -1,6 +1,6 @@
 #!/usr/local/bin/pike
 
-/* $Id: export.pike,v 1.15 1998/03/20 22:56:48 hubbe Exp $ */
+/* $Id: export.pike,v 1.16 1998/03/25 04:41:51 hubbe Exp $ */
 
 #include <simulate.h>
 
@@ -97,7 +97,7 @@ int main(int argc, string *argv)
 
     vpath=replace(getversion()," ","-");
     string tag=replace(vpath,({"Pike-","."}),({"","_"}));
-    vpath=replace(getversion(),"-release-",".");
+    vpath=replace(vpath,"-release-",".");
 #if 0
     mapping x=localtime(time());
     tag+=+"-"+sprintf("%02d%02d%02d-%02d%02d",
@@ -122,6 +122,7 @@ int main(int argc, string *argv)
     if(file_size("pike/src/modules/"+tmp) == -2)
       fix_configure("modules/"+tmp);
 
+    werror("vpath = %s\n",vpath);
   system("ln -s pike "+vpath);
 
   files=sum(({ vpath+"/README", vpath+"/ANNOUNCE" }),
-- 
GitLab