Skip to content

Commit

Permalink
Update Makefile to use git instead of svn.
Browse files Browse the repository at this point in the history
  • Loading branch information
roubert committed Mar 1, 2019
1 parent b22592e commit 4fa8bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ BINPATH=/src/bin/
DISTROS=$(shell cd dockerfiles;ls)
DISTROS_SMALL=ubuntu fedora
SRC=src/icu
REV:=$(shell svnversion $(SRC) | tr -d ' ')
REV:=$(shell (cd $(SRC) && (git describe --tags --exact-match 2>/dev/null || git rev-parse --short HEAD)) || echo 'unknown')
all: dirs src/icu

#src/icu: src
Expand Down

0 comments on commit 4fa8bcb

Please sign in to comment.