make install fails

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



make[3]: Entering directory `/home/XFree86/4.2/std/xc/programs/xterm'
install -c  "`if [ \`grep ^utmp: /etc/group\` ]; then echo ' -m 2755 -g utmp'; else echo ' -m 4711'; fi`" xterm /usr/X11R6-v4/bin/xterm
install: installing multiple files, but last argument, 
`/usr/X11R6-v4/bin/xterm' is not a directory
Try `install --help' for more information.

I think that the double quotes are turning the -m flags into a filename 
beginning with a space.

The enclosed patch seems to work.
Index: xc/programs/xterm/Imakefile
===================================================================
RCS file: /home/CVS/XFree86/xc/programs/xterm/Imakefile,v
retrieving revision 3.69
diff -u -r3.69 Imakefile
--- xc/programs/xterm/Imakefile	2006/03/23 21:10:57	3.69
+++ xc/programs/xterm/Imakefile	2006/03/26 07:53:31
@@ -80,7 +80,7 @@
 
 #if InstallXtermSetGID
 CSGIDFLAGS = -DUSE_UTMP_SETGID
-INSTUIDFLAGS = "`if [ \`grep ^utmp: /etc/group\` ]; then echo ' -m 2755 -g utmp'; else echo ' -m 4711'; fi`"
+INSTUIDFLAGS = `if [ \`grep ^utmp: /etc/group\` ]; then echo ' -m 2755 -g utmp'; else echo ' -m 4711'; fi`
 #else
 # if InstallXtermSetUID
 INSTUIDFLAGS = -m 4711

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [X Forum]     [XFree86]     [XFree86 Newbie]     [X.Org]     [IETF Annouce]     [Security]     [Fontconfig]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]

  Powered by Linux