patches/glibc/ports-2.12.1/650-syslog.patch
author Anthony Foiani <anthony.foiani@gmail.com>
Thu Apr 26 19:55:59 2012 -0600 (2012-04-26)
changeset 2939 58974be61289
permissions -rw-r--r--
Allow multi-word "install" command.

Autoconf can determine that the correct install command includes flags,
e.g., "/usr/bin/install -c". When using this as a command, we can't
enclose the value in double-quotes, as that makes some shells use the
whole expression as a filename:

# this is the value returned by autoconf and stored in CT_install
$ ins="/usr/bin/install -c"

# if we call it with quotes, the command is not found
$ "${ins}"
bash: /usr/bin/install -c: No such file or directory

# removing the quotes lets it work as expected
$ ${ins}
/usr/bin/install: missing file operand
Try `/usr/bin/install --help' for more information.

Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
yann@2437
     1
diff -durN glibc-cvs-2.9.orig/misc/syslog.c glibc-cvs-2.9/misc/syslog.c
yann@2437
     2
--- glibc-cvs-2.9.orig/misc/syslog.c	2009-06-01 10:16:50.000000000 +0200
yann@2437
     3
+++ glibc-cvs-2.9/misc/syslog.c	2009-06-01 10:17:20.000000000 +0200
yann@2437
     4
@@ -152,7 +152,7 @@
yann@2437
     5
 #define	INTERNALLOG	LOG_ERR|LOG_CONS|LOG_PERROR|LOG_PID
yann@2437
     6
 	/* Check for invalid bits. */
yann@2437
     7
 	if (pri & ~(LOG_PRIMASK|LOG_FACMASK)) {
yann@2437
     8
-		syslog(INTERNALLOG,
yann@2437
     9
+		__syslog(INTERNALLOG,
yann@2437
    10
 		    "syslog: unknown facility/priority: %x", pri);
yann@2437
    11
 		pri &= LOG_PRIMASK|LOG_FACMASK;
yann@2437
    12
 	}