~ubuntu-branches/ubuntu/intrepid/git-core/intrepid-updates

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-06-19 17:32:30 UTC
  • mfrom: (1.1.19)
  • Revision ID: package-import@ubuntu.com-20070619173230-g0xnsa5lw7uvmk80
Tags: 1:1.5.2.2-1
* new upstream point release.
  * Fix typo in remote branch example in git user manual (closes: #427502).
* debian/diff/0003-git-branch-track-fix-tracking-branch-computation.diff:
  remove; applied upstream.
* debian/versions.upstream: new; ordered list of upstream versions,
  starting with 1.0.0.
* debian/changelog.upstream.sh: new; create changelog.upstream from git
  shortlog using debian/versions.upstream.
* debian/changelog.upstream: re-created through changelog.upstream.sh.
* debian/diff/0003-git-svn-trailing-slash-in-prefix-is-mandatory-with.diff:
  new; git-svn: trailing slash in prefix is mandatory with --branches/-b
  (closes: #429443).

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
# Define USE_STDEV below if you want git to care about the underlying device
108
108
# change being considered an inode change from the update-cache perspective.
109
109
#
 
110
# Define ASCIIDOC8 if you want to format documentation with AsciiDoc 8
 
111
#
110
112
# Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
111
113
# MakeMaker (e.g. using ActiveState under Cygwin).
112
114
#
410
412
        NEEDS_NSL = YesPlease
411
413
        SHELL_PATH = /bin/bash
412
414
        NO_STRCASESTR = YesPlease
 
415
        NO_HSTRERROR = YesPlease
413
416
        ifeq ($(uname_R),5.8)
414
417
                NEEDS_LIBICONV = YesPlease
415
418
                NO_UNSETENV = YesPlease
654
657
ifdef NO_PERL_MAKEMAKER
655
658
        export NO_PERL_MAKEMAKER
656
659
endif
 
660
ifdef NO_HSTRERROR
 
661
        COMPAT_CFLAGS += -DNO_HSTRERROR
 
662
        COMPAT_OBJS += compat/hstrerror.o
 
663
endif
657
664
 
658
665
ifeq ($(TCLTK_PATH),)
659
666
NO_TCLTK=NoThanks
684
691
endif
685
692
endif
686
693
 
 
694
ifdef ASCIIDOC8
 
695
        export ASCIIDOC8
 
696
endif
 
697
 
687
698
# Shell quote (do not use $(call) to accommodate ancient setups);
688
699
 
689
700
SHA1_HEADER_SQ = $(subst ','\'',$(SHA1_HEADER))