bug-coreutils
[Top][All Lists]
Advanced

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

error building coreutils on Solaris 9 - Makefile:541: *** missing separa


From: Poor Yorick
Subject: error building coreutils on Solaris 9 - Makefile:541: *** missing separator
Date: Thu, 19 Jun 2008 22:20:15 +0000

installing coreutils-6.12 on SunOS 5.9, with gcc-4.2.2 and gnu ld, "make" fails
because there are newlines in the @MAN@ variable:

    Makefile:541: *** missing separator.  Stop.

The following patch eliminates the newlines:


    --- configure.ac        2008-06-18 19:05:11 -04:00
    +++ configure.ac.new    2008-06-19 13:47:20 -04:00
    @@ -313,7 +313,7 @@

     # Change ginstall.1 to "install.h" in $MAN.
     MAN=`for m in $MAN; do test $m = ginstall.1 && m=install.1; echo $m; done \
    -  | tr '\015\012' ' '; echo`
    +  | tr '\015\012' '  '; echo`

     # Remove [.1, since writing a portable rule for it in man/Makefile.am
     # is not practical.  The sed LHS below uses the autoconf quadrigraph
    EOF


-- 
Yorick




reply via email to

[Prev in Thread] Current Thread [Next in Thread]