Fix AutoInstall

This commit is contained in:
Chris Young 2012-10-31 19:39:34 +00:00
parent cfdf28ac93
commit 7c737252e0
1 changed files with 3 additions and 26 deletions

29
amiga/dist/Install vendored
View File

@ -311,20 +311,9 @@
(set osver (/ osver 65536))
(set #versions-available 0)
(set #static-filename "NetSurf-Static")
(set #static-filename "NetSurf")
(set #cairo-filename "NetSurf")
(if (exists "NetSurf-Static")
(
(set #static-name "Static/graphics.library")
(set #versions-available (+ #versions-available 1))
)
; else
(
(set #static-name "")
)
)
(if (exists "NetSurf")
(
(if (exists "SObjs")
@ -375,8 +364,7 @@
(set #cairo-version
(askchoice
(prompt "Which version of NetSurf would you like to install?")
(help "The Cairo/shared objects version has better rendering "
"of some graphical elements, and supports SVG.\n\n"
(help "The Cairo version has anti-aliasing of graphical elements.\n\n"
@askchoice-help)
(choices #static-name #cairo-name)
(default #cairo-version)
@ -474,18 +462,7 @@
)
;else
(
(copyfiles
(prompt "Please check the version of NetSurf you are copying against "
"any which might already be installed.")
(help @copyfiles-help)
(source #netsurf-name)
(dest "T:")
(newname "NetSurf")
(optional "force" "oknodelete")
)
(run "CopyStore T:NetSurf" @default-dest)
(delete "T:NetSurf")
(run "CopyStore NetSurf" @default-dest)
)
)