diff options
author | Takashi Iwai <tiwai@suse.de> | 2007-06-08 11:35:03 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2007-06-08 11:35:03 +0200 |
commit | e973a96f4f1c0d15fef1ed87eac45800eff329ba (patch) | |
tree | 1dfd37be6ed16c54f652a66684759fda915d7995 | |
parent | e9ec5aef2761dcdd02c244ce6e95398101c6cbef (diff) |
Fix plugin directory
Fix a typo in configure script that results in a wrong plugin directory.
ALSA bug#3148
https://bugtrack.alsa-project.org/alsa-bug/view.php?id=3148
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index f6a2c07d..f14a8945 100644 --- a/configure.in +++ b/configure.in @@ -93,7 +93,7 @@ if test -z "$plugindir"; then esac plugindir="$dir/$PACKAGE" fi -AC_DEFINE_UNQUOTED(ALSA_PLUGIN_DIR, "plugindir", [directory containing ALSA add-on modules]) +AC_DEFINE_UNQUOTED(ALSA_PLUGIN_DIR, "$plugindir", [directory containing ALSA add-on modules]) ALSA_PLUGIN_DIR="$plugindir" AC_SUBST(ALSA_PLUGIN_DIR) |