]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Tweak code style
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 19 Dec 2015 16:16:56 +0000 (17:16 +0100)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 19 Dec 2015 16:16:56 +0000 (17:16 +0100)
ccache.c

index 26b911fc8b57397f88a2cf6a5ce7de8ccbebe919..810b2940a2cef603bc8046e770cbd473c04bee3e 100644 (file)
--- a/ccache.c
+++ b/ccache.c
@@ -2044,11 +2044,12 @@ cc_process_args(struct args *args, struct args **preprocessor_args,
                        }
                }
 
-               /* Multiple -arch options are too hard. */
+               /* Different -arch options are too hard. */
                if (str_eq(argv[i], "-arch")) {
                        if (found_arch) {
                                if (!str_eq(found_arch, argv[i+1])) {
-                                       cc_log("More than one different -arch compiler options is unsupported. Found %s and %s.", found_arch, argv[i+1]);
+                                       cc_log("Different -arch compiler options are unsupported; found %s"
+                                              " and %s", found_arch, argv[i+1]);
                                        stats_update(STATS_UNSUPPORTED);
                                        result = false;
                                        goto out;