diff --git a/bin/foamPackDeps b/bin/foamPackDeps index ab663a04c4e8dc516b8a4abf1699f151388f1798..0f4d040fffd1fc724aceed81bab91bf6abb6fa1b 100755 --- a/bin/foamPackDeps +++ b/bin/foamPackDeps @@ -58,6 +58,7 @@ cat <<USAGE Usage: ${0##*/} [OPTION] options: -b, -bzip2 use bzip2 instead of gzip compression + -c, -current for compatibility - currently ignored -o, -output <dir> specify alternative output directory * Pack and compress *.dep files from $codeBase @@ -67,7 +68,7 @@ USAGE } -unset outputDir +unset archOptions outputDir packExt=tgz # parse options @@ -81,6 +82,10 @@ do packExt=tbz shift ;; + -c | -current) # use $WM_OPTIONS - eg, 'linux64GccDPOpt' + archOptions="$WM_OPTIONS" + shift + ;; -o | -output) [ "$#" -ge 2 ] || usage "'$1' option requires an argument" outputDir=${2%%/}