From c6e08f8a6a3a606c01ee64eec0ecc478d40f25ae Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sat, 7 Apr 2007 18:51:12 +0000 Subject: [PATCH] corretta gestione parametro --- INSTALL.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/INSTALL.sh b/INSTALL.sh index b959272..5b88547 100755 --- a/INSTALL.sh +++ b/INSTALL.sh @@ -60,6 +60,7 @@ while [ $# -gt 0 ]; do -w*) web_path="`get_param "-w" "$1" "$2"`"; sh=$?;; -k*) ftok_path="`get_param "-k" "$1" "$2"`"; sh=$?;; -c*) cookie_path="`get_param "-c" "$1" "$2"`"; sh=$?;; + -l*) legal_path="`get_param "-l" "$1" "$2"`"; sh=$?;; -W) web_only="TRUE";; -h) usage $0; exit 0;; *) usage $0; exit 1;; @@ -147,7 +148,7 @@ sed -i "s@define *( *FTOK_PATH,[^)]*)@define(FTOK_PATH, \"$ftok_path\")@g" `find sed -i "s@define *( *BRISK_DEBUG,[^)]*)@define(BRISK_DEBUG, $brisk_debug)@g" ${web_path}/brisk.phh -sed -i "s@define *( *LEGAL_PATH,[^)]*)@define(LEGAL_PATH, $legal_path)@g" ${web_path}/brisk.phh +sed -i "s@define *( *LEGAL_PATH,[^)]*)@define(LEGAL_PATH, \"$legal_path\")@g" ${web_path}/brisk.phh sed -i "s@var \+xhr_rd_cookiepath \+= \+\"[^\"]*\";@var xhr_rd_cookiepath = \"$cookie_path\";@g" ${web_path}/xhr.js -- 2.17.1