From: Bruno Haible Date: Mon, 8 May 2006 13:24:03 +0000 (+0000) Subject: Fix last patch. X-Git-Tag: v0.15~194 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f3376edafbed9640979cb9b9cc0ce6a23a140966;p=thirdparty%2Fgettext.git Fix last patch. --- diff --git a/gettext-tools/m4/javacomp.m4 b/gettext-tools/m4/javacomp.m4 index 0253ada9d..967fd180d 100644 --- a/gettext-tools/m4/javacomp.m4 +++ b/gettext-tools/m4/javacomp.m4 @@ -123,13 +123,13 @@ changequote([,])dnl # Use POSIX od. func_classfile_version () { - od -A n -t d1 -j 7 -N 1 "$1" + od -A n -t d1 -j 7 -N 1 "[$]1" } else # Use BSD hexdump. func_classfile_version () { - dd if="$1" bs=1 count=1 skip=7 2>/dev/null | hexdump -e '1/1 "%3d "' + dd if="[$]1" bs=1 count=1 skip=7 2>/dev/null | hexdump -e '1/1 "%3d "' echo } fi