We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 78a2fbc + eae0446 commit afe40feCopy full SHA for afe40fe
BSDmakefile
@@ -104,7 +104,7 @@ uninstall:
104
### Creating Distributions ###
105
106
.ifmake dist || disttree || archive
107
-TAG != git tag | tail -1
+TAG != git tag | tail -1 | cut -c 2-
108
.endif
109
110
Makefile
@@ -104,10 +104,10 @@ uninstall:
# BSD: .ifmake dist || disttree || archive
-# BSD: TAG != git tag | tail -1
+# BSD: TAG != git tag | tail -1 | cut -c 2-
# BSD: .endif
-dist disttree archive: TAG := $(strip $(shell git tag | tail -1))#<<< GNU
+dist disttree archive: TAG := $(strip $(shell git tag | tail -1 | cut -c 2-))#<<< GNU
111
112
#dist: archive
113
0 commit comments