Ticket #22027: 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
     
    240240gitexecdir = libexec/git-core
    241241sharedir = $(prefix)/share
    242242template_dir = share/git-core/templates
    243 htmldir = share/doc/git-doc
     243htmldir = share/doc/git-core
    244244ifeq ($(prefix),/usr)
    245245sysconfdir = /etc
    246246ETC_GITCONFIG = $(sysconfdir)/gitconfig
     
    10291029        ifdef NO_R_TO_GCC_LINKER
    10301030                # Some gcc does not accept and pass -R to the linker to specify
    10311031                # the runtime dynamic library path.
    1032                 CC_LD_DYNPATH = -Wl,-rpath,
     1032                CC_LD_DYNPATH = -L
    10331033        else
    10341034                CC_LD_DYNPATH = -R
    10351035        endif
     
    10441044        BASIC_CFLAGS += -DNO_CURL
    10451045else
    10461046        ifdef CURLDIR
    1047                 # Try "-Wl,-rpath=$(CURLDIR)/$(lib)" in such a case.
     1047                # Try "-Wl,-rpath,$(CURLDIR)/$(lib)" in such a case.
    10481048                BASIC_CFLAGS += -I$(CURLDIR)/include
    10491049                CURL_LIBCURL = -L$(CURLDIR)/$(lib) $(CC_LD_DYNPATH)$(CURLDIR)/$(lib) -lcurl
    10501050        else