changeset 1425:504534b687c0 trunk

[svn] - better quoting
author nenolod
date Tue, 18 Jul 2006 16:28:43 -0700
parents 7288721a34df
children da317afd6c12
files ChangeLog configure.ac
diffstat 2 files changed, 13 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Jul 18 15:28:07 2006 -0700
+++ b/ChangeLog	Tue Jul 18 16:28:43 2006 -0700
@@ -1,3 +1,12 @@
+2006-07-18 22:28:07 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [1762]
+  - datarootdir stuff
+  
+
+  Changes:        Modified:
+  +1 -0           trunk/mk/rules.mk.in  
+
+
 2006-07-18 20:40:19 +0000  Tony Vroon <chainsaw@gentoo.org>
   revision [1760]
   Updated greek translation by StavrosG.
--- a/configure.ac	Tue Jul 18 15:28:07 2006 -0700
+++ b/configure.ac	Tue Jul 18 16:28:43 2006 -0700
@@ -891,7 +891,7 @@
 AM_CONDITIONAL(HAVE_SOLARIS, test "x$have_solaris" = xyes)
 AM_CONDITIONAL(HAVE_SUN, test "x$have_sun" = xyes)
 
-plugindir=$libdir/audacious
+plugindir="$libdir/audacious"
 AC_SUBST(plugindir)
 
 if test "x$enable_one_plugin_dir" = "xyes"; then
@@ -922,11 +922,11 @@
         prefix="${ac_default_prefix}"
 fi
 
-if test -z $datadir; then
-	datadir=${prefix}/share
+if test -z "$datadir"; then
+	datadir="${prefix}/share"
 fi
 
-localedir=$datadir/locale
+localedir="$datadir/locale"
 AC_SUBST(localedir)
 
 BEEP_DEFINES="$CFLAGS -DDATA_DIR=\\\"$datadir/audacious\\\" -DPLUGIN_DIR=\\\"$plugindir\\\" -DPLUGINSUBS=$pluginsubs -DLOCALEDIR=\\\"$localedir\\\""