diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2008-11-09 04:11:08 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2008-11-09 04:11:08 (GMT) |
commit | 624e3d45c31e269ef293071d70140240775ab8bb (patch) | |
tree | 144fae40fe12b8140cc71660112614cc24cf1a9e /Makefile | |
parent | 0db49f8e6b36bdea03f97c544b07d91302e05f10 (diff) | |
download | mxe-624e3d45c31e269ef293071d70140240775ab8bb.zip mxe-624e3d45c31e269ef293071d70140240775ab8bb.tar.gz mxe-624e3d45c31e269ef293071d70140240775ab8bb.tar.bz2 |
rename installation markers from 'installed.*' to 'installed-*' to avoid weird file extensions
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -37,8 +37,8 @@ all: $(PKG_RULES) define PKG_RULE .PHONY: $(1) -$(1): $(PREFIX)/installed.$(1) -$(PREFIX)/installed.$(1): $(addprefix $(PREFIX)/installed.,$($(1)_DEPS)) +$(1): $(PREFIX)/installed-$(1) +$(PREFIX)/installed-$(1): $(addprefix $(PREFIX)/installed-,$($(1)_DEPS)) [ -d '$(PREFIX)' ] || mkdir -p '$(PREFIX)' [ -d '$(PKG_DIR)' ] || mkdir -p '$(PKG_DIR)' rm -rf '$(2)' |