summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorhartmut@mysql.com <>2004-10-15 15:33:30 +0200
committerhartmut@mysql.com <>2004-10-15 15:33:30 +0200
commitb50688d5e9c7163da29336d803d24a3735aac5b6 (patch)
tree46d6d7292741fb8075aa64b2c96139ee9a39c69e /configure.in
parent41ab008a366b67d13431cf4977572713b9e1939e (diff)
downloadmariadb-git-b50688d5e9c7163da29336d803d24a3735aac5b6.tar.gz
the $^ directive is a GNU make extension and not really needed here
so lets get rid of it (Bug #6112)
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 37b0432b98d..d4073ea441b 100644
--- a/configure.in
+++ b/configure.in
@@ -40,12 +40,12 @@ do
case $host_os in
netware* | modesto*)
echo "$i/errmsg.sys: $i/errmsg.txt
- \$(top_builddir)/extra/comp_err.linux \$^ $i/errmsg.sys" \
+ \$(top_builddir)/extra/comp_err.linux $i/errmsg.txt $i/errmsg.sys" \
>> $AVAILABLE_LANGUAGES_ERRORS_RULES
;;
*)
echo "$i/errmsg.sys: $i/errmsg.txt
- \$(top_builddir)/extra/comp_err \$^ $i/errmsg.sys" \
+ \$(top_builddir)/extra/comp_err $i/errmsg.txt $i/errmsg.sys" \
>> $AVAILABLE_LANGUAGES_ERRORS_RULES
;;
esac