summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2019-10-04 00:00:07 -0400
committerAndrew Cady <d@jerkface.net>2019-10-04 00:00:07 -0400
commit882d8f88513f5f6856e53aeadec2f1276c42920a (patch)
treeadbd4e597a985733881f50f7deacbafdef593369
parent15885db0ccd7cfaf03805a046a7da1179076c75c (diff)
avoid optimization to debug
-rw-r--r--fsmgr.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/fsmgr.hs b/fsmgr.hs
index 752b142..212f76b 100644
--- a/fsmgr.hs
+++ b/fsmgr.hs
@@ -55,7 +55,7 @@ buildRoot config@DiskImageConfig{..} finalOut = do
55 -- When there is no parent, selfstrap should install packages marked 55 -- When there is no parent, selfstrap should install packages marked
56 -- "Required" even if no packages are specified. When there is a parent, 56 -- "Required" even if no packages are specified. When there is a parent,
57 -- assume that this has already happened. 57 -- assume that this has already happened.
58 cmd_ "selfstrap --skip-update" (("--unpack" `consWhen` unpackOnly) ["-t", mountpoint]) packageNames 58 cmd_ "selfstrap" (("--unpack" `consWhen` unpackOnly) ["-t", mountpoint]) packageNames
59 when (not $ null debs) $ do 59 when (not $ null debs) $ do
60 cmd_ (AddEnv "DEBIAN_FRONTEND" "noninteractive") 60 cmd_ (AddEnv "DEBIAN_FRONTEND" "noninteractive")
61 ["dpkg"] [if unpackOnly then "--unpack" else "--install"] debs 61 ["dpkg"] [if unpackOnly then "--unpack" else "--install"] debs