Ticket #22891: patch-Makefile.diff

File patch-Makefile.diff, 1.3 KB (added by maccheck@…, 15 years ago)
  • Makefile

    old new  
    131131#
    132132# Define NO_R_TO_GCC_LINKER if your gcc does not like "-R/path/lib"
    133133# that tells runtime paths to dynamic libraries;
    134 # "-Wl,-rpath=/path/lib" is used instead.
     134# "-Wl,-rpath,/path/lib" is used instead.
    135135#
    136136# Define USE_NSEC below if you want git to care about sub-second file mtimes
    137137# and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
     
    244244gitexecdir = libexec/git-core
    245245sharedir = $(prefix)/share
    246246template_dir = share/git-core/templates
    247 htmldir = share/doc/git-doc
     247htmldir = share/doc/git-core
    248248ifeq ($(prefix),/usr)
    249249sysconfdir = /etc
    250250ETC_GITCONFIG = $(sysconfdir)/gitconfig
     
    10331033        ifdef NO_R_TO_GCC_LINKER
    10341034                # Some gcc does not accept and pass -R to the linker to specify
    10351035                # the runtime dynamic library path.
    1036                 CC_LD_DYNPATH = -Wl,-rpath,
     1036                CC_LD_DYNPATH = -L
    10371037        else
    10381038                CC_LD_DYNPATH = -R
    10391039        endif
     
    10481048        BASIC_CFLAGS += -DNO_CURL
    10491049else
    10501050        ifdef CURLDIR
    1051                 # Try "-Wl,-rpath=$(CURLDIR)/$(lib)" in such a case.
     1051                # Try "-Wl,-rpath,$(CURLDIR)/$(lib)" in such a case.
    10521052                BASIC_CFLAGS += -I$(CURLDIR)/include
    10531053                CURL_LIBCURL = -L$(CURLDIR)/$(lib) $(CC_LD_DYNPATH)$(CURLDIR)/$(lib) -lcurl
    10541054        else