Philip Prindeville wrote:
> One more time, for the sake of the braindead (such as me):
>
> How about:
>
> ifeq ($(LINK_TO_VI),y)
> LINKIT="ln -s -f"
> else
> LINKIT=":"
> endif
>
> ...
>
> -$(LINKIT) $(BINDIR)/$(VIMTARGET) $(DESTDIR)/usr/bin/vim
>
> instead?
What make understands "ifeq"? This looks restricted to some versions of
make.
How can LINKIT only be ":"?
> While I'm at it, looking at src/configure.in:
>
>
> have_local_include=''
> have_local_lib=''
> if test "$GCC" = yes; then
> echo 'void f(){}' > conftest.c
> dnl -no-cpp-precomp is needed for OS X 10.2 (Ben Fowler)
> ...
> if test "$tt" = "$CPPFLAGS"; then
> CPPFLAGS="$CPPFLAGS -I/usr/local/include"
> fi
> fi
>
>
> Should that read:
>
> have_local_include=''
> have_local_lib=''
> if test "$cross_compiling" = no; then
> if test "$GCC" = yes; then
> echo 'void f(){}' > conftest.c
> dnl -no-cpp-precomp is needed for OS X 10.2 (Ben Fowler)
> ...
> if test "$tt" = "$CPPFLAGS"; then
> CPPFLAGS="$CPPFLAGS -I/usr/local/include"
> fi
> fi
> fi
That should be part of the cross-compiling patch then. The distributed
configure doesn't support cross compiling.
> And lastly... why does the target "installrtbase" install the man pages?
>
> How do I get an installation with everything but the man pages?
Run make on the other targets. It's fairly unusual not to install man
pages.
--
hundred-and-one symptoms of being an internet addict:
254. You wake up daily with your keyboard printed on your forehead.
/// Bram Moolenaar -- [EMAIL PROTECTED] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ download, build and distribute -- http://www.A-A-P.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---