diff options
author | Phil Sutter <phil.sutter@viprinet.com> | 2015-02-24 12:46:50 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-28 10:14:25 +0100 |
commit | 1081ca94b8738cb63f01641d4a615bb0d9ff8dcf (patch) | |
tree | 7348bfd67c66d9800da68dd573692186beea28de | |
parent | b35d9328163f84e2d7dc6f2504c5e7c3fffc92dd (diff) |
mk/package.mk: fix for cleaning packages
Due to using the wrong name, the packages stamp file was not removed and
therefore it was not rebuilt at all.
-rw-r--r-- | mk/package.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/package.mk b/mk/package.mk index 65d9c8f9f..3b27d1278 100644 --- a/mk/package.mk +++ b/mk/package.mk @@ -308,7 +308,7 @@ clean-targets: clean: @$(CMD_TRACE) "cleaning... " @$(MAKE) clean-targets $(MAKE_TRACE) - rm -rf ${WRKDIR} ${ALL_IPKGS} ${STAGING_PKG_DIR}/stamps/${PKG_NAME}${PKG_VERSION} + rm -rf ${WRKDIR} ${ALL_IPKGS} ${_IPKGS_COOKIE} distclean: clean rm -f ${FULLDISTFILES} |