diff options
| author | maximilian attems <maks@debian.org> | 2007-08-16 00:26:25 +0200 | 
|---|---|---|
| committer | maximilian attems <maks@debian.org> | 2007-08-16 00:26:25 +0200 | 
| commit | 45e9e24621bb7833ef20cc4c0a8ee1c4f2c8eefa (patch) | |
| tree | 6e00a98bbc64eb92521baa5d57f80e7c6767d340 | |
| parent | 7b0e6ab2ff392502d195de90536395189dc93856 (diff) | |
| download | initramfs-tools-45e9e24621bb7833ef20cc4c0a8ee1c4f2c8eefa.tar.gz initramfs-tools-45e9e24621bb7833ef20cc4c0a8ee1c4f2c8eefa.zip | |
mkinitramfs: kick empty modules dir
assume a s/ /\// was meant ;)
| -rw-r--r-- | debian/changelog | 7 | ||||
| -rwxr-xr-x | mkinitramfs | 2 | 
2 files changed, 8 insertions, 1 deletions
| diff --git a/debian/changelog b/debian/changelog index 32992b8..34f7103 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +initramfs-tools (0.91) unstable; urgency=low + +  * scripts/functions: simplify panic() +  * mkinitramfs: Kick empty dir modules. + + -- maximilian attems <maks@debian.org>  Thu, 16 Aug 2007 00:25:22 +0200 +  initramfs-tools (0.90) unstable; urgency=low    Release "J'aim' pas le fataliste Je n'ai ni foi ni loi" diff --git a/mkinitramfs b/mkinitramfs index e1cf857..c7a4598 100755 --- a/mkinitramfs +++ b/mkinitramfs @@ -170,7 +170,7 @@ export KEYMAP  # Private, used by 'catenate_cpiogz'.  export __TMPCPIOGZ -for d in bin conf/conf.d etc lib modules sbin scripts ${MODULESDIR}; do +for d in bin conf/conf.d etc lib/modules sbin scripts ${MODULESDIR}; do  	mkdir -p "${DESTDIR}/${d}"  done | 
