Skip to content

Commit

Permalink
Remove some uneeded vars and typos
Browse files Browse the repository at this point in the history
  • Loading branch information
drewc authored and fare committed May 25, 2021
1 parent bd79c2e commit 829a78b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ mandir = @mandir@

LIBS = @LIBS@

gerbil_home = "${DESTDIR}/${prefix}/lib/${PACKAGE_SHORTNAME}"
gerbil_home = "${prefix}/lib/${PACKAGE_SHORTNAME}"
gerbil_bin = "${gerbil_home}/bin"
gerbil_lib = "${gerbil_home}/lib"
gerbil_bin_linkdir = "${DESTDIR}/${prefix}/bin"
gerbil_bin_linkdir = "${prefix}/bin"

gerbil_make_conf = @gerbil_make_conf@

Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -1786,7 +1786,7 @@ else $as_nop
with_gambit=no
fi

if test "x$with_gambit" != xno] ; then
if test "x$with_gambit" != xno ; then
gerbil_make_conf="$gerbil_make_conf --with-gambit=\"${with_gambit}\""
fi

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ AC_ARG_WITH([gambit],
[Set default location of Gambit])],
[],
[with_gambit=no])
if test "x$with_gambit" != xno] ; then
if test "x$with_gambit" != xno ; then
gerbil_make_conf="$gerbil_make_conf --with-gambit=\"${with_gambit}\""
fi

Expand Down
6 changes: 3 additions & 3 deletions doc/configure-and-make.org
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ AC_ARG_WITH([gambit],
[Set default location of Gambit])],
[],
[with_gambit=no])
if test "x$with_gambit" != xno] ; then
if test "x$with_gambit" != xno ; then
gerbil_make_conf="$gerbil_make_conf --with-gambit=\"${with_gambit}\""
fi

Expand Down Expand Up @@ -280,10 +280,10 @@ mandir = @mandir@

LIBS = @LIBS@

gerbil_home = "${DESTDIR}/${prefix}/lib/${PACKAGE_SHORTNAME}"
gerbil_home = "${prefix}/lib/${PACKAGE_SHORTNAME}"
gerbil_bin = "${gerbil_home}/bin"
gerbil_lib = "${gerbil_home}/lib"
gerbil_bin_linkdir = "${DESTDIR}/${prefix}/bin"
gerbil_bin_linkdir = "${prefix}/bin"

gerbil_make_conf = @gerbil_make_conf@

Expand Down

0 comments on commit 829a78b

Please sign in to comment.