1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-31 11:32:00 +00:00

removed one conditional in the cc65 Makefile gcc.mak in order to make SVN version work also with SVN 1.7.x working copies

git-svn-id: svn://svn.cc65.org/cc65/trunk@5348 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
silverdr 2011-12-29 20:37:32 +00:00
parent 27c28bd078
commit a37c0427a7

View File

@ -27,14 +27,10 @@ LDFLAGS = -lm
# Determine the svn version number if possible
ifneq "$(shell which svnversion 2>/dev/null)" ""
ifneq "$(wildcard .svn)" ""
SVNVERSION=$(shell svnversion)
else
SVNVERSION=unknown
endif
else
SVNVERSION=unknown
endif
# ------------------------------------------------------------------------------
# Object files and libraries to link