summaryrefslogtreecommitdiff
path: root/maint
diff options
context:
space:
mode:
authorGravatar Mike Burns <mike@mike-burns.com>2015-11-13 13:27:56 +0100
committerGravatar Mike Burns <mike@mike-burns.com>2015-11-13 13:34:52 +0100
commita801c4c58902cae7b835d890487edc39bd7da142 (patch)
treec05540025b1ce37ce10a00eded95ef6f318f299b /maint
parent21ba58a06d82bfaec8e2daf67a694311e3cc3034 (diff)
Use $LOGNAME instead of $USER
The $USER environment variable is not guaranteed to exist, but $LOGNAME is defined by POSIX[0] (Environment Variables, section 8.3 Other Environment Variables). Use that instead. Thanks to Scott Stevenson for pointing out this solution, and Debian for raising the problem. [0]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap08.html#tag_08_03
Diffstat (limited to 'maint')
-rwxr-xr-xmaint/release.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/maint/release.in b/maint/release.in
index 1df9f97..e29e059 100755
--- a/maint/release.in
+++ b/maint/release.in
@@ -87,7 +87,7 @@ release_build_deb() {
cp -R debian deb-build/${PACKAGE}-${PACKAGE_VERSION} && \
cd deb-build/${PACKAGE}-${PACKAGE_VERSION} && \
dch -d "New upstream release" && dch -r "" && \
- debuild --prepend-path=/usr/local/bin -e USER -F && \
+ debuild --prepend-path=/usr/local/bin -F && \
cd ${abs_top_builddir} && \
([ -d gh-pages ] || git clone --branch gh-pages ${ORIGIN_URL} gh-pages) && \
([ -d gh-pages/debs ] || mkdir gh-pages/debs) && \