diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-03-21 14:19:29 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-03-22 16:44:12 +0100 |
commit | e992b7cd0be36f847c3a574d25ea0bf977a34c4e (patch) | |
tree | 5bda5dbfa65638929bdbf852407029ea7e4586d7 | |
parent | 5f0c77b7c1158869c75ca4f0006122ead1d2bcc4 (diff) | |
download | drakx-e992b7cd0be36f847c3a574d25ea0bf977a34c4e.tar drakx-e992b7cd0be36f847c3a574d25ea0bf977a34c4e.tar.gz drakx-e992b7cd0be36f847c3a574d25ea0bf977a34c4e.tar.bz2 drakx-e992b7cd0be36f847c3a574d25ea0bf977a34c4e.tar.xz drakx-e992b7cd0be36f847c3a574d25ea0bf977a34c4e.zip |
prevent usrmove files to remain in stage2
this makes sure that no *.usrmove~ file remains, thus saving space
-rw-r--r-- | perl-install/install/Makefile | 5 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/install/Makefile b/perl-install/install/Makefile index 8b2e25827..1dd4a5d1d 100644 --- a/perl-install/install/Makefile +++ b/perl-install/install/Makefile @@ -52,9 +52,10 @@ install_pms: get_needed_files: xs # generate installer system: - REP4PMS=$(REP4PMS) ../../tools/install-xml-file-list share/list.xml $(DEST) - mkdir -p $(DEST)/usr/sbin + mkdir -p $(DEST)/{usr/,}{,s}bin + for dir in /lib /lib64; do [[ -d $$dir ]] && mkdir -p $(DEST){,/usr}$$dir; done /usr/lib/dracut/modules.d/30convertfs/convertfs.sh $(DEST) + REP4PMS=$(REP4PMS) ../../tools/install-xml-file-list share/list.xml $(DEST) chmod u-s -R $(DEST) # for mount/umount share/generate-xlocales $(DEST) diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index a3bf41c1d..1a59ace0a 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- prevent usrmove files to remain + Version 17.21 - 21 March 2016 - load evdev (thus fixing a crash) |