Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
Clean up a couple of (harmless, but unsightly) bits of cruft
left from a failed attempt at implementing the ARCH_FLAGS support.
  • Loading branch information
wr-seebs committed Jul 25, 2012
1 parent 1768bd9 commit d7aeda5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.txt
@@ -1,3 +1,6 @@
2012-07-24:
* (seebs) Fix a couple of bitrots from the update.

2012-07-20: 2012-07-20:
* (seebs) Add --cflags, deprecate --arch. * (seebs) Add --cflags, deprecate --arch.
* (seebs) tag 1.4 (since this should now work on arbitrary targets) * (seebs) tag 1.4 (since this should now work on arbitrary targets)
Expand Down
4 changes: 1 addition & 3 deletions configure
Expand Up @@ -23,7 +23,6 @@ opt_libdir=
opt_suffix= opt_suffix=
opt_arch=x86 opt_arch=x86
opt_bits= opt_bits=
opt_arch=x86
opt_sqlite=/usr opt_sqlite=/usr
opt_rpath= opt_rpath=


Expand Down Expand Up @@ -115,7 +114,7 @@ if [ "${opt_cflags-UNSET}" = "UNSET" ]; then
echo >&2 "WARNING: Guessing architecture CFLAGS '${arch_flags-<unset>}'." echo >&2 "WARNING: Guessing architecture CFLAGS '${arch_flags-<unset>}'."
echo >&2 "If you need specific flags, use --cflags." echo >&2 "If you need specific flags, use --cflags."
else else
eval arch_flags=\$opt_cflags arch_flags=$opt_cflags
fi fi


if $use_maybe_rpath && [ -n "$maybe_rpath" ]; then if $use_maybe_rpath && [ -n "$maybe_rpath" ]; then
Expand Down Expand Up @@ -167,5 +166,4 @@ sed -e '
s,@MARK64@,'"$opt_mark64"',g s,@MARK64@,'"$opt_mark64"',g
s,@ARCH@,'"$opt_arch"',g s,@ARCH@,'"$opt_arch"',g
s,@BITS@,'"$opt_bits"',g s,@BITS@,'"$opt_bits"',g
s,@CFLAGS@,'"$opt_cflags"',g
' < Makefile.in > Makefile ' < Makefile.in > Makefile

0 comments on commit d7aeda5

Please sign in to comment.