OSDN Git Service

Fixed the previous wrong modification.
authorMamoru Sakaue / MwGhennndo <glmwghennndo@users.sourceforge.jp>
Sat, 14 Jul 2018 14:50:32 +0000 (22:50 +0800)
committerMamoru Sakaue / MwGhennndo <glmwghennndo@users.sourceforge.jp>
Sat, 14 Jul 2018 14:50:32 +0000 (22:50 +0800)
 Changes to be committed:
modified:   lib/chroot/libfs.sh
modified:   lib/libmain.sh

lib/chroot/libfs.sh
lib/libmain.sh

index 8ebadba..87ad379 100644 (file)
@@ -263,7 +263,7 @@ fs_mount ()
        systembase=$1
        message_echo "Mounting the file systems for builder chroot environment."
        fs_gen_fstab
-       if ! mount -F "${DBDIR}/mount_manifest" -a || ! fs_chk_mount "$systembase"
+       if ! mount -F "${DBDIR}/fstab" -a || ! fs_chk_mount "$systembase"
        then
                message_echo "Error: Failed to mount the file systems. Some of them remain unmounted." >&2
                exit 1
@@ -343,7 +343,7 @@ fs_unmount ()
        [ -e "${DBDIR}/mount_manifest" ] || return 0
        message_echo "Unmounting the file systems for builder chroot."
        fs_gen_fstab
-       if ! umount -F "${DBDIR}/mount_manifest" -af || ! fs_chk_unmount "$systembase"
+       if ! umount -F "${DBDIR}/fstab" -af || ! fs_chk_unmount "$systembase"
        then
                message_echo "WARNING: Failed to unmount the file systems. Some of them remain mounted." >&2
                return 1
index e74db23..19140ae 100644 (file)
@@ -12,7 +12,7 @@ main_set_version ()
        MYVERSION=4.0.1
        COMPATIBLE_VERSIONS='^(4\.[0]\.[0-1])$'
        # Template for development versions
-       MYVERSION=4.0.0+toward_4.0.1_20180714215631
+       MYVERSION=4.0.0+toward_4.0.1_20180714225009
        COMPATIBLE_VERSIONS='^(4\.[0]\.[0-1]]|4\.[0]\.[0]+(|\+toward_4\.[0]\.[1]+_[0-9]+))$'
 }