Hi,

I've come across a little peculiarity in the installation section of
the Makefile of eagle-usb-2.3.2.

There's a line
@if [ -t doc/man/eagleconfig.8 ] ; then
which does not work for my /bin/sh.

I don't know what "-t" does for your shell, but it doesn't make any
sense with standard Bourne shells.

I'm attaching an easy patch to fix this. At least it shouldn't hurt
anyone. ;)

Thanks,
Moritz
diff -ur eagle-usb-2.3.2/Makefile eagle-usb-2.3.2-docinstall/Makefile
--- eagle-usb-2.3.2/Makefile    2005-03-28 23:29:50.000000000 +0200
+++ eagle-usb-2.3.2-docinstall/Makefile 2005-06-03 19:52:07.000000000 +0200
@@ -72,7 +72,7 @@
        $(MAKE) -C utils/scripts install
        $(MAKE) -C utils/eagleconnect install
        # TODO : are manpages sometimes gzipped?? => update this test
-       @if [ -t doc/man/eagleconfig.8 ] ; then \
+       @if [ -f doc/man/eagleconfig.8 ] ; then \
                $(MAKE) -C doc install ; \
        fi
        #hash -r

Reply via email to