Skip to content

Commit afe40fe

Browse files
committed
Merge branch 'build'
2 parents 78a2fbc + eae0446 commit afe40fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

BSDmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ uninstall:
104104
### Creating Distributions ###
105105

106106
.ifmake dist || disttree || archive
107-
TAG != git tag | tail -1
107+
TAG != git tag | tail -1 | cut -c 2-
108108
.endif
109109

110110

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ uninstall:
104104
### Creating Distributions ###
105105

106106
# BSD: .ifmake dist || disttree || archive
107-
# BSD: TAG != git tag | tail -1
107+
# BSD: TAG != git tag | tail -1 | cut -c 2-
108108
# BSD: .endif
109109

110-
dist disttree archive: TAG := $(strip $(shell git tag | tail -1))#<<< GNU
110+
dist disttree archive: TAG := $(strip $(shell git tag | tail -1 | cut -c 2-))#<<< GNU
111111

112112
#dist: archive
113113

0 commit comments

Comments
 (0)