Don't use rm from the nmake build.

fix-linux
Niklas Larsson 2019-10-31 13:41:22 +01:00 committed by John Benediktsson
parent 614256abe2
commit 99df1effea
1 changed files with 3 additions and 3 deletions

View File

@ -8,21 +8,21 @@ VERSION = 0.99
!IF [git describe --all > git-describe.tmp] == 0 !IF [git describe --all > git-describe.tmp] == 0
GIT_DESCRIBE = \ GIT_DESCRIBE = \
!INCLUDE <git-describe.tmp> !INCLUDE <git-describe.tmp>
!IF [rm git-describe.tmp] == 0 !IF [del git-describe.tmp] == 0
!ENDIF !ENDIF
!ENDIF !ENDIF
!IF [git rev-parse HEAD > git-id.tmp] == 0 !IF [git rev-parse HEAD > git-id.tmp] == 0
GIT_ID = \ GIT_ID = \
!INCLUDE <git-id.tmp> !INCLUDE <git-id.tmp>
!IF [rm git-id.tmp] == 0 !IF [del git-id.tmp] == 0
!ENDIF !ENDIF
!ENDIF !ENDIF
!IF [git rev-parse --abbrev-ref HEAD > git-branch.tmp] == 0 !IF [git rev-parse --abbrev-ref HEAD > git-branch.tmp] == 0
GIT_BRANCH = \ GIT_BRANCH = \
!INCLUDE <git-branch.tmp> !INCLUDE <git-branch.tmp>
!IF [rm git-branch.tmp] == 0 !IF [del git-branch.tmp] == 0
!ENDIF !ENDIF
!ENDIF !ENDIF