diff options
author | Eugene Sandulenko | 2011-11-23 12:55:54 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2011-11-23 12:55:54 +0000 |
commit | a8a698c82b748b73224f01c3bd19b29a2e698ab0 (patch) | |
tree | 3db83d3a54039796d0553db293dd2846fbeafebf | |
parent | 3bfa80d94fa160f08a9cc1d0dcdd852b83b2506a (diff) | |
download | scummvm-rg350-a8a698c82b748b73224f01c3bd19b29a2e698ab0.tar.gz scummvm-rg350-a8a698c82b748b73224f01c3bd19b29a2e698ab0.tar.bz2 scummvm-rg350-a8a698c82b748b73224f01c3bd19b29a2e698ab0.zip |
BUILD: Added comment to new project generation target
-rw-r--r-- | ports.mk | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -248,10 +248,13 @@ win32setup: $(EXECUTABLE) # Special target to generate project files for various IDEs # Mainly Win32-specific # + +# The release branch is in form 'heads/branch-1-4-1', for this case +# $CUR_BRANCH will be equal to '1', for the rest cases it will be empty CUR_BRANCH := $(shell cd $(srcdir); git describe --all |cut -d '-' -f 4-) ideprojects: devtools/create_project -ifneq ($(VER_DIRTY), -dirty) +ifeq ($(VER_DIRTY), -dirty) $(error You have uncommitted changes) endif ifeq "$(CUR_BRANCH)" "heads/master" |