From 3228e0c4d9494401bb4a1b557dbd9d16babeb426 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Fri, 16 Dec 2011 00:00:13 +0000 Subject: Install "if equals" comparisons are = not == svn path=/trunk/netsurf/; revision=13281 --- amiga/dist/Install | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/amiga/dist/Install b/amiga/dist/Install index ce17be761..fbe55e92c 100755 --- a/amiga/dist/Install +++ b/amiga/dist/Install @@ -570,23 +570,23 @@ ; This probably needs rewriting to not use fitr as it isn't really necessary now. (working "Adding NetSurf to launch-handler config") - (if (== (p_chk_launch-handler "FILE.LH") 0) + (if (= (p_chk_launch-handler "FILE.LH") 0) (p_fitr "ENVARC:launch-handler/URL/FILE.LH" "ClientName=\"NETSURF\" ClientPath=\"APPDIR:NETSURF\" CMDFORMAT=\"URL=*\"file:///%s*\"\"") ) - (if (== (p_chk_launch-handler "HTTP.LH") 0) + (if (= (p_chk_launch-handler "HTTP.LH") 0) (p_fitr "ENVARC:launch-handler/URL/HTTP.LH" "ClientName=\"NETSURF\" ClientPath=\"APPDIR:NETSURF\" CMDFORMAT=\"URL=*\"http://%s*\"\"") ) - (if (== (p_chk_launch-handler "HTTPS.LH") 0) + (if (= (p_chk_launch-handler "HTTPS.LH") 0) (p_fitr "ENVARC:launch-handler/URL/HTTPS.LH" "ClientName=\"NETSURF\" ClientPath=\"APPDIR:NETSURF\" CMDFORMAT=\"URL=*\"https://%s*\"\"") ) - (if (== (p_chk_launch-handler "WWW.LH") 0) + (if (= (p_chk_launch-handler "WWW.LH") 0) (p_fitr "ENVARC:launch-handler/URL/WWW.LH" "ClientName=\"NETSURF\" ClientPath=\"APPDIR:NETSURF\" CMDFORMAT=\"URL=*\"http://www.%s*\"\"") ) -; (if (== (p_chk_launch-handler "FTP.LH") 0) +; (if (= (p_chk_launch-handler "FTP.LH") 0) ; (p_fitr "ENVARC:launch-handler/URL/FTP.LH" "ClientName=\"NETSURF\" ClientPath=\"APPDIR:NETSURF\" CMDFORMAT=\"URL=*\"ftp://%s*\"\"") ; ) ) -- cgit v1.2.3