From 856e904369322ff3caa7bb549bc0e1bac9718b8b Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 17 Feb 2006 05:37:33 +0000 Subject: [PATCH] Remove unnecessary quotes. --- contrib/crossrpms/configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/crossrpms/configure.ac b/contrib/crossrpms/configure.ac index ad87027771..65b6684435 100644 --- a/contrib/crossrpms/configure.ac +++ b/contrib/crossrpms/configure.ac @@ -18,12 +18,12 @@ AC_ARG_ENABLE([rpmprefix], /usr) rpmprefix= AC_MSG_WARN([Ignoring given rpmprefix]) ;; - NONE) rpmprefix=["rtems-"]RTEMS_API["-"] + NONE) rpmprefix=[rtems-]RTEMS_API[-] AC_MSG_WARN([Ignoring given rpmprefix]) ;; *) case $enable_rpmprefix in - ''|["rtems-"]RTEMS_API["-"]) + ''|[rtems-]RTEMS_API[-]) AC_MSG_ERROR([Invalid --enable-rpmprefix]);; *) rpmprefix=$enable_rpmprefix;; @@ -34,7 +34,7 @@ AC_ARG_ENABLE([rpmprefix], # defaults case "$prefix" in /usr) rpmprefix=;; - NONE) rpmprefix=["rtems-"]RTEMS_API["-"];; + NONE) rpmprefix=[rtems-]RTEMS_API[-];; *) AC_MSG_ERROR([Missing --enable-rpmprefix]) ;; esac ])