From: KO Myung-Hun Date: Fri, 19 Dec 2014 01:52:01 +0000 (+0000) Subject: build: don't call OS/2 routines on all systems X-Git-Tag: v8.24~166 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70d8d0f874d11990be48b7b6b70c2c274000b3da;p=thirdparty%2Fcoreutils.git build: don't call OS/2 routines on all systems * src/system.h: Add a missing __OS2__ ifdef guard. Also adjust spacing around () to avoid a syntax-check failure. --- diff --git a/src/system.h b/src/system.h index 2d2635a687..e4bb9f56cd 100644 --- a/src/system.h +++ b/src/system.h @@ -137,8 +137,12 @@ enum /* Redirection and wildcarding when done by the utility itself. Generally a noop, but used in particular for OS/2. */ #ifndef initialize_main -# define initialize_main(ac, av) \ - do { _wildcard(ac, av); _response(ac, av); } while (0) +# ifndef __OS2__ +# define initialize_main(ac, av) +# else +# define initialize_main(ac, av) \ + do { _wildcard (ac, av); _response (ac, av); } while (0) +# endif #endif #include "stat-macros.h"