Skip to content

Commit

Permalink
configure: fix unix-style configuration with --prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
mflatt committed Apr 17, 2020
1 parent fb677d9 commit 734491b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion racket/src/ac/path.m4
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

unixstyle=no
if test "${enable_useprefix}" = "yes" -a "${prefix}" != "NONE" ; then
if test "${enable_origtree}" != "yes" -a "${enable_useprefix}" != "no" ; then
if test "${prefix}" != "NONE" ; then
unixstyle=yes
fi
Expand Down
2 changes: 1 addition & 1 deletion racket/src/cfg-cs
Original file line number Diff line number Diff line change
Expand Up @@ -2038,7 +2038,7 @@ fi
unixstyle=no
if test "${enable_useprefix}" = "yes" -a "${prefix}" != "NONE" ; then
if test "${enable_origtree}" != "yes" -a "${enable_useprefix}" != "no" ; then
if test "${prefix}" != "NONE" ; then
unixstyle=yes
fi
Expand Down
2 changes: 1 addition & 1 deletion racket/src/cfg-racket
Original file line number Diff line number Diff line change
Expand Up @@ -3019,7 +3019,7 @@ fi


unixstyle=no
if test "${enable_useprefix}" = "yes" -a "${prefix}" != "NONE" ; then
if test "${enable_origtree}" != "yes" -a "${enable_useprefix}" != "no" ; then
if test "${prefix}" != "NONE" ; then
unixstyle=yes
fi
Expand Down
2 changes: 1 addition & 1 deletion racket/src/cs/c/configure
Original file line number Diff line number Diff line change
Expand Up @@ -2915,7 +2915,7 @@ PREFIX_PATH_RELATIVE=/../..


unixstyle=no
if test "${enable_useprefix}" = "yes" -a "${prefix}" != "NONE" ; then
if test "${enable_origtree}" != "yes" -a "${enable_useprefix}" != "no" ; then
if test "${prefix}" != "NONE" ; then
unixstyle=yes
fi
Expand Down

0 comments on commit 734491b

Please sign in to comment.