Commit 7552cd96 authored by Tres Seaver's avatar Tres Seaver

Normalize spelling: 'TMPDIR' -> 'TMP_DIR'.

parent 29244171
...@@ -10,7 +10,7 @@ RELEASE_TAG=<<VERSION_RELEASE_TAG>> ...@@ -10,7 +10,7 @@ RELEASE_TAG=<<VERSION_RELEASE_TAG>>
PACKAGE_NAME=${NAME}-${MAJOR_VERSION}.${MINOR_VERSION}-${RELEASE_TAG} PACKAGE_NAME=${NAME}-${MAJOR_VERSION}.${MINOR_VERSION}-${RELEASE_TAG}
PYTHON="<<PYTHON>>" PYTHON="<<PYTHON>>"
TMPDIR=<<TMP_DIR>> TMP_DIR=<<TMP_DIR>>
PREFIX=<<PREFIX>> PREFIX=<<PREFIX>>
BASE_DIR=<<BASE_DIR>> BASE_DIR=<<BASE_DIR>>
BUILD_BASE=<<BUILD_BASE>> BUILD_BASE=<<BUILD_BASE>>
...@@ -118,8 +118,8 @@ sdist: clobber sdist_tgz ...@@ -118,8 +118,8 @@ sdist: clobber sdist_tgz
# sdist_tgz: Create a tgz archive file as a source distribution. # sdist_tgz: Create a tgz archive file as a source distribution.
# #
sdist_tgz: version_txt sdist_tgz: version_txt
${MKDIR} ${TMPDIR} ${MKDIR} ${TMP_DIR}
${CD} ${TMPDIR} && ${LN} ${BASE_DIR} ${PACKAGE_NAME} && \ ${CD} ${TMP_DIR} && ${LN} ${BASE_DIR} ${PACKAGE_NAME} && \
${TAR} czfh ${BASE_DIR}/${PACKAGE_NAME}.tgz \ ${TAR} czfh ${BASE_DIR}/${PACKAGE_NAME}.tgz \
--exclude=${PACKAGE_NAME}.tgz\ --exclude=${PACKAGE_NAME}.tgz\
--exclude=.svn\ --exclude=.svn\
...@@ -127,7 +127,7 @@ sdist_tgz: version_txt ...@@ -127,7 +127,7 @@ sdist_tgz: version_txt
--exclude=build-base \ --exclude=build-base \
--exclude=*~ \ --exclude=*~ \
--exclude=.#* ${PACKAGE_NAME} --exclude=.#* ${PACKAGE_NAME}
${RMRF} ${TMPDIR}/${PACKAGE_NAME} ${RMRF} ${TMP_DIR}/${PACKAGE_NAME}
# clobber: Make the source tree 'pristine' again. # clobber: Make the source tree 'pristine' again.
clobber: clean uninstance clobber: clean uninstance
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment