diff options
author | dancer <dancer> | 2002-12-18 08:25:12 +0000 |
---|---|---|
committer | dancer <dancer> | 2002-12-18 08:25:12 +0000 |
commit | 4bad1676b359fbf748aa3992706a52a43202c1be (patch) | |
tree | 85768c28d61443653f2ae8ef76bbc5f89093382c | |
parent | e16af8eb606a13ec6466cf4492449ce9408312fb (diff) | |
download | pbuilder-4bad1676b359fbf748aa3992706a52a43202c1be.tar pbuilder-4bad1676b359fbf748aa3992706a52a43202c1be.tar.gz |
+ I had a typo, fix it.
-rw-r--r-- | ChangeLog | 1 | ||||
-rwxr-xr-x | pbuilder-user-mode-linux | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,7 @@ 2002-12-18 Junichi Uekawa <dancer@debian.org> * pbuilder-user-mode-linux: try to us COW device. + I had a typo, fix it. * pbuilder-user-mode-linux.1: document diff --git a/pbuilder-user-mode-linux b/pbuilder-user-mode-linux index 2375171..a260748 100755 --- a/pbuilder-user-mode-linux +++ b/pbuilder-user-mode-linux @@ -32,7 +32,7 @@ for CONFIGFILE in /usr/share/pbuilder/pbuilder-uml.conf /etc/pbuilder/pbuilder- done function usecow () { - PBUILDER_COW=",$BUILDPLACE/$$.cow" + PBUILDER_COW="$BUILDPLACE/$$.cow," } function operate_uml () { @@ -95,7 +95,7 @@ EOF chmod a+x ${INSIDE_PBUILDER} - linux eth0=${MY_ETH0} con0=fd:0,fd:1 con=pty ubd0=/ ubd1="${PBUILDER_UML_IMAGE}${PBUILDER_COW}" devfs=mount init=${INSIDE_PBUILDER} + linux eth0=${MY_ETH0} con0=fd:0,fd:1 con=pty ubd0=/ ubd1="${PBUILDER_COW}${PBUILDER_UML_IMAGE}" devfs=mount init=${INSIDE_PBUILDER} } PBUILDER_COW="" |