summaryrefslogtreecommitdiff
path: root/libtoolize.in
diff options
context:
space:
mode:
authorGary V. Vaughan <gary@gnu.org>2012-10-19 12:32:25 +0700
committerGary V. Vaughan <gary@gnu.org>2012-10-19 14:24:21 +0700
commit9477e33ef07253559bf95eef379e2ecc740201c7 (patch)
treec940cda6af414a9cffe9456e0cd4cf0a1261fb6e /libtoolize.in
parent55262b6fe432ee00ef2acf8b76d37b9ed459cf46 (diff)
downloadlibtool-9477e33ef07253559bf95eef379e2ecc740201c7.tar.gz
libtoolize: fix a misspelled variable name.
* libtoolize.in (func_require_am_macro_dir): The loop uses _G_arg not _G_opt. Now spelled correctly. Signed-off-by: Gary V. Vaughan <gary@gnu.org>
Diffstat (limited to 'libtoolize.in')
-rw-r--r--libtoolize.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtoolize.in b/libtoolize.in
index 09e3a9bc..6f63a518 100644
--- a/libtoolize.in
+++ b/libtoolize.in
@@ -1397,7 +1397,7 @@ for base in '' ltdl_; do
case $_G_minus_I_seen,$_G_arg in
:,*) '$r'=$_G_arg; break ;;
*,-I) _G_minus_I_seen=: ;;
- *,-I*) '$r'=`expr x$_G_opt : '\''x-I\(.*\)$'\''`; break ;;
+ *,-I*) '$r'=`expr x$_G_arg : '\''x-I\(.*\)$'\''`; break ;;
esac
done