summary refs log tree commit diff stats
path: root/version-template.ps1
diff options
context:
space:
mode:
authorTingPing <tingping@fedoraproject.org>2014-06-04 10:30:18 -0400
committerTingPing <tingping@fedoraproject.org>2014-06-04 10:30:18 -0400
commitb8c02f71d9bbaf805534d5327d8c3935a3b87636 (patch)
tree723ae84fda43728303d4651a42f800f3ef1abd79 /version-template.ps1
parent806b98dfc215f0c561ab51babe970abfa787169e (diff)
win32: Use config.h instead of config-win32.h
Diffstat (limited to 'version-template.ps1')
-rw-r--r--version-template.ps112
1 files changed, 0 insertions, 12 deletions
diff --git a/version-template.ps1 b/version-template.ps1
deleted file mode 100644
index 18eb90d9..00000000
--- a/version-template.ps1
+++ /dev/null
@@ -1,12 +0,0 @@
-param ([string] $templateFilename, [string] $outputFilename)
-
-$versionParts = Select-String -Path "${env:SOLUTIONDIR}configure.ac" -Pattern '^AC_INIT\(\[HexChat\],\[([^]]+)\]\)$' | Select-Object -First 1 | %{ $_.Matches[0].Groups[1].Value.Split('.') }
-
-[string[]] $contents = Get-Content $templateFilename -Encoding UTF8 | %{
-	while ($_ -match '^(.*?)<#=(.*?)#>(.*?)$') {
-		$_ = $Matches[1] + $(Invoke-Expression $Matches[2]) + $Matches[3]
-	}
-	$_
-}
-
-[System.IO.File]::WriteAllLines($outputFilename, $contents)