Forráskód Böngészése

build: Do not use single quote on strings

This should pacify syntax highlighters.
Guillem Jover 17 éve
szülő
commit
689a87eff5
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      configure.ac

+ 2 - 2
configure.ac

@@ -19,7 +19,7 @@ AM_GNU_GETTEXT([external])
 # Allow compilation without dselect
 AC_ARG_WITH(dselect,
 	AS_HELP_STRING([--without-dselect],
-		       [don't build dselect package-management frontend]),
+		       [do not build dselect package-management frontend]),
 	[build_dselect=$with_dselect],
 	[build_dselect=yes])
 AM_CONDITIONAL(WITH_DSELECT, [test "x$build_dselect" = "xyes"])
@@ -27,7 +27,7 @@ AM_CONDITIONAL(WITH_DSELECT, [test "x$build_dselect" = "xyes"])
 # Allow compilation without start-stop-daemon
 AC_ARG_WITH(start-stop-daemon,
 	AS_HELP_STRING([--without-start-stop-daemon],
-		       [don't build or use start-stop-daemon]),
+		       [do not build or use start-stop-daemon]),
 	[build_start_stop_daemon=$with_start_stop_daemon],
 	[build_start_stop_daemon=yes])
 AM_CONDITIONAL(WITH_START_STOP_DAEMON,