Ignore:
Timestamp:
Jun 20, 2012, 12:44:52 AM (13 years ago)
Author:
bird
Message:

gnumake/current -> 3.82-cvs.

Location:
vendor/gnumake/current
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • vendor/gnumake/current

    • Property svn:ignore deleted
  • vendor/gnumake/current/maintMakefile

    r1989 r2596  
    144144          && (cd "$$tmppo" \
    145145                && $(WGET) -r -l1 -nd --no-parent -A '*.po' $(po_repo)) \
    146           && cp "$$tmppo"/*.po po && rm -rf "$$tmppo"
     146          && cp "$$tmppo"/*.po $(top_srcdir)/po && rm -rf "$$tmppo"
    147147        cd po && $(MAKE) update-po
    148148        $(MAKE) po-check
    149149
    150150po-update:
    151         if test -d "po"; then \
    152           $(MAKE) do-po-update; \
    153         fi
     151        [ -d "po" ] && $(MAKE) do-po-update
    154152
    155153# -------------------------- #
     
    161159# regularly updated from the specified URL.
    162160
    163 savannah-url = http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~
     161cvs-url = http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~
     162git-url = http://git.savannah.gnu.org/cgit
    164163target = $(patsubst get-%,%,$@)
    165164
    166 config-url = $(savannah-url)/config/config/$(patsubst get-config/%,%,$@)
     165config-url = $(git-url)/config.git/plain/$(patsubst get-config/%,%,$@)
    167166get-config/config.guess get-config/config.sub:
    168167        @echo $(WGET) $(config-url) -O $(target) \
     
    170169          && $(move_if_change)
    171170
    172 gnulib-url = $(savannah-url)/gnulib/gnulib/build-aux/$(patsubst get-config/%,%,$@)
     171gnulib-url = $(git-url)/gnulib.git/plain/build-aux/$(patsubst get-config/%,%,$@)
    173172get-config/texinfo.tex:
    174173        @echo $(WGET) $(gnulib-url) -O $(target) \
     
    176175          && $(move_if_change)
    177176
    178 gnustandards-url = $(savannah-url)/gnustandards/gnustandards/$(patsubst get-doc/%,%,$@)
     177gnustandards-url = $(cvs-url)/gnustandards/gnustandards/$(patsubst get-doc/%,%,$@)
    179178get-doc/make-stds.texi get-doc/fdl.texi:
    180179        @echo $(WGET) $(gnustandards-url) -O $(target) \
     
    182181          && $(move_if_change)
    183182
    184 .PHONY: cvs-update
    185 cvs-update: get-config/texinfo.tex get-config/config.guess get-config/config.sub get-doc/make-stds.texi get-doc/fdl.texi
     183.PHONY: scm-update
     184scm-update: get-config/texinfo.tex get-config/config.guess get-config/config.sub get-doc/make-stds.texi get-doc/fdl.texi
    186185
    187186
     
    191190
    192191.PHONY: update
    193 update: po-update cvs-update
     192update: po-update scm-update
    194193
    195194
     
    205204
    206205changelog-check:
    207         if head ChangeLog | grep 'Version $(VERSION)' >/dev/null; then \
     206        if head $(top_srcdir)/ChangeLog | grep 'Version $(VERSION)' >/dev/null; then \
    208207          :; \
    209208        else \
     
    247246        @echo "Creating directive file '$@':"
    248247        @( \
    249            echo 'verstion: 1.1'; \
     248           echo 'version: 1.1'; \
    250249           echo 'directory: make'; \
    251250           echo 'filename: $*'; \
     
    258257
    259258FTPPUT = ncftpput
    260 gnu-url = ftp-upload.gnu.org /incoming
     259gnu-upload-host = ftp-upload.gnu.org
     260gnu-upload-dir  = /incoming
     261
    261262
    262263UPLOADS = upload-alpha upload-ftp
    263264.PHONY: $(UPLOADS)
    264265$(UPLOADS): $(DIST_ARCHIVES) $(DIST_ARCHIVES_SIG) $(DIST_ARCHIVES_DIRECTIVE)
    265         $(FTPPUT) "$(gnu-url)/$(@:upload-%=%)" $^
     266        $(FTPPUT) "$(gnu-upload-host)" "$(gnu-upload-dir)/$(@:upload-%=%)" $^
    266267
    267268
    268269# Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
    269 # 2007 Free Software Foundation, Inc.
     270# 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
    270271# This file is part of GNU Make.
    271272#
Note: See TracChangeset for help on using the changeset viewer.