Ticket #23376: patch-Makefile.diff

File patch-Makefile.diff, 1.3 KB (added by maccheck@…, 14 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
     
    265265gitexecdir = libexec/git-core
    266266sharedir = $(prefix)/share
    267267template_dir = share/git-core/templates
    268 htmldir = share/doc/git-doc
     268htmldir = share/doc/git-core
    269269ifeq ($(prefix),/usr)
    270270sysconfdir = /etc
    271271ETC_GITCONFIG = $(sysconfdir)/gitconfig
     
    10691069        ifdef NO_R_TO_GCC_LINKER
    10701070                # Some gcc does not accept and pass -R to the linker to specify
    10711071                # the runtime dynamic library path.
    1072                 CC_LD_DYNPATH = -Wl,-rpath,
     1072                CC_LD_DYNPATH = -L
    10731073        else
    10741074                CC_LD_DYNPATH = -R
    10751075        endif
     
    10841084        BASIC_CFLAGS += -DNO_CURL
    10851085else
    10861086        ifdef CURLDIR
    1087                 # Try "-Wl,-rpath=$(CURLDIR)/$(lib)" in such a case.
     1087                # Try "-Wl,-rpath,$(CURLDIR)/$(lib)" in such a case.
    10881088                BASIC_CFLAGS += -I$(CURLDIR)/include
    10891089                CURL_LIBCURL = -L$(CURLDIR)/$(lib) $(CC_LD_DYNPATH)$(CURLDIR)/$(lib) -lcurl
    10901090        else