From: rpolzer Date: Mon, 15 Sep 2008 09:08:43 +0000 (+0000) Subject: get rid of annoying makeversion.py, install.py X-Git-Tag: svn-r421~393 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=commitdiff_plain;h=fc6bdf7367fcdf573d3d66dab4cf39f7dc8dad33 get rid of annoying makeversion.py, install.py git-svn-id: svn://svn.icculus.org/netradiant/trunk@27 61c419a2-8eb2-4b30-bcec-8cead039b335 --- diff --git a/ChangeLog b/ChangeLog index 794f4156..81b0a347 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,8 +5,7 @@ instead * q2data: remove RSA security copyrighted md4.c, using mdfour.c from DP instead as a drop-in replacement - * all: get rid of makeversion.py dependency (still need Python for - install.py) + * all: get rid of makeversion.py and install.py 2008-09-13 Rudolf Polzer divVerent(at)alientrap.org * q3map2: update to ZeroRadiant's q3map2 diff --git a/Makefile b/Makefile index bcb5b31d..ea08a144 100644 --- a/Makefile +++ b/Makefile @@ -470,14 +470,13 @@ makeversion: .PHONY: install-data install-data: + $(MKDIR) install/games set -ex; \ for GAME in games/*; do \ for GAMEFILE in $$GAME/games/*.game; do \ - $(MKDIR) install/games; \ $(CP) "$$GAMEFILE" install/games/; \ done; \ for GAMEDIR in $$GAME/*.game; do \ - $(MKDIR) install; \ $(CP_R) "$$GAMEDIR" install/; \ done; \ done