no warn tabs when building the EvilLinker and NullSoftInstaller

This commit is contained in:
Joey Hess 2015-09-01 15:06:43 -07:00
parent a8f3f04768
commit 538ff09477
2 changed files with 4 additions and 4 deletions

View file

@ -28,13 +28,13 @@ if [ ! -e "dist/setup-config" ]; then
withcyg cabal configure withcyg cabal configure
fi fi
if ! withcyg cabal build; then if ! withcyg cabal build; then
ghc --make Build/EvilLinker ghc --make Build/EvilLinker -fno-warn-tabs
withcyg Build/EvilLinker withcyg Build/EvilLinker
fi fi
# Build the installer # Build the installer
cabal install nsis cabal install nsis
ghc --make Build/NullSoftInstaller.hs ghc --make Build/NullSoftInstaller.hs -fno-warn-tabs
PATH="$PATH:/cygdrive/c/Program Files/NSIS" PATH="$PATH:/cygdrive/c/Program Files/NSIS"
# Want to include cygwin programs in bundle, not others, since # Want to include cygwin programs in bundle, not others, since
# it includes the cygwin libs that go with them. # it includes the cygwin libs that go with them.

View file

@ -54,13 +54,13 @@ touch last-incremental-failed
withcyg cabal configure withcyg cabal configure
if ! withcyg cabal build; then if ! withcyg cabal build; then
rm -f Build/EvilLinker.exe rm -f Build/EvilLinker.exe
ghc --make Build/EvilLinker ghc --make Build/EvilLinker -fno-warn-tabs
Build/EvilLinker Build/EvilLinker
fi fi
# Build the installer # Build the installer
cabal install nsis cabal install nsis
ghc -fforce-recomp --make Build/NullSoftInstaller.hs ghc -fforce-recomp --make Build/NullSoftInstaller.hs -fno-warn-tabs
# Want to include cygwin programs in bundle, not others, since # Want to include cygwin programs in bundle, not others, since
# it includes the cygwin libs that go with them. # it includes the cygwin libs that go with them.
# Currently need an older version of rsync than the one from cygwin. # Currently need an older version of rsync than the one from cygwin.