summarylogtreecommitdiffstats
path: root/install.patch
diff options
context:
space:
mode:
authorUnCO2015-06-09 11:18:48 +0800
committerUnCO2015-06-09 11:18:48 +0800
commitbe3b61d15efc56bc6393a69e657f1a526fbe25aa (patch)
tree7d0c2c353333aed3d4d02040f0bfffd21241d083 /install.patch
downloadaur-cobra-svn.tar.gz
Initial import
Diffstat (limited to 'install.patch')
-rw-r--r--install.patch45
1 files changed, 45 insertions, 0 deletions
diff --git a/install.patch b/install.patch
new file mode 100644
index 000000000000..27be805c6419
--- /dev/null
+++ b/install.patch
@@ -0,0 +1,45 @@
+Index: Source/InstallFromWorkspace.cobra
+===================================================================
+diff --git a/Source/InstallFromWorkspace.cobra b/Source/InstallFromWorkspace.cobra
+--- a/Source/InstallFromWorkspace.cobra (revision 3047)
++++ b/Source/InstallFromWorkspace.cobra (working copy)
+@@ -106,7 +106,7 @@
+ 'name': 'Cobra.Core',
+ 'flags': '-build-standard-library',
+ 'files': 'Cobra.Core/AssemblyAttrs.cobra',
+- 'requiresGacVerification': true,
++ 'requiresGacVerification': false,
+ },
+ {
+ 'name': 'Cobra.Compiler',
+@@ -113,7 +113,7 @@
+ 'flags': '-c -t:lib -embed-version -ert:yes -namespace:Cobra.Compiler -files:files-to-compile.text',
+ # 'files': 'Cobra.Core/Compiler.Attributes.cobra', # to-do
+ 'files': 'cobra.cobra',
+- 'requiresGacVerification': true,
++ 'requiresGacVerification': false,
+ },
+ ]
+
+@@ -158,9 +158,9 @@
+ .verifyNewlyBuiltCobra
+ .copyFilesToInstallDirectory
+ .verifyNewlyInstalledCobra
+- .cleanUpWorkspace
+- .installInPath
+- .changeDirectoryInstruction
++ # .cleanUpWorkspace
++ # .installInPath
++ # .changeDirectoryInstruction
+ print 'Visit http://cobra-language.com/ for discussion, wiki, samples, irc and more.'
+ print
+ print 'Success!'
+@@ -619,7 +619,7 @@
+
+ def installLibrary(name as String, flags as String, files as String, requiresGacVerification)
+ .buildLibrary(name, flags, files as String)
+- .installLibraryToGAC(name)
++ # .installLibraryToGAC(name)
+ .verifyGacInstallation(name, requiresGacVerification)
+
+ def buildLibrary(name as String, flags as String, files as String)