mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 09:19:15 -04:00
Do what was clearly intended: s/${ENV}/${SETENV}/
Prior to this change these ports fail when built under su(8) since that results in ${ENV} being ~/.shrc. Approved by: kwm (maintainer, gnome@)
This commit is contained in:
parent
918cf4aa64
commit
b51437f7d1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=329738
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ python_CMD?= ${LOCALBASE}/bin/python2
|
|||
SHEBANG_FILES= examples/*.py examples/*/*.py waf test/*.py
|
||||
|
||||
do-configure:
|
||||
@cd ${WRKSRC} && ${ENV} ${CONFIGURE_ENV} ./waf configure
|
||||
@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ./waf configure
|
||||
|
||||
do-build:
|
||||
@cd ${WRKSRC} && ./waf
|
||||
|
|
|
@ -28,7 +28,7 @@ python_CMD?= ${LOCALBASE}/bin/python3
|
|||
SHEBANG_FILES= examples/*.py examples/*/*.py waf test/*.py
|
||||
|
||||
do-configure:
|
||||
@cd ${WRKSRC} && ${ENV} ${CONFIGURE_ENV} ./waf configure
|
||||
@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ./waf configure
|
||||
|
||||
do-build:
|
||||
@cd ${WRKSRC} && ./waf
|
||||
|
|
Loading…
Add table
Reference in a new issue