From 8c062d98c64d56a616eb237f3028b3a747546b01 Mon Sep 17 00:00:00 2001 From: teastep Date: Sun, 11 Mar 2007 21:23:23 +0000 Subject: [PATCH] Add hidden option to allow testing of new perl-based compiler -- Take 2 git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5496 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall/compiler | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall/compiler b/Shorewall/compiler index 673eb72b2..7bddfdc54 100755 --- a/Shorewall/compiler +++ b/Shorewall/compiler @@ -5691,13 +5691,13 @@ case "$COMMAND" in check) [ $# -ne 1 ] && usage do_initialize - [ -n "$EXPERIMENTAL" ] && exec perl $debug $(find_file compiler.pl) || exec compile_firewall + [ -n "$EXPERIMENTAL" ] && exec perl $debug $(find_file compiler.pl) || compile_firewall ;; compile) [ $# -ne 2 ] && usage do_initialize - [ -n "$EXPERIMENTAL" ] && exec perl $debug $(find_file compiler.pl) $2 || exec compile_firewall $2 + [ -n "$EXPERIMENTAL" ] && exec perl $debug $(find_file compiler.pl) $2 || compile_firewall $2 ;; call)