diff options
-rw-r--r-- | scripts/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/Makefile b/scripts/Makefile index 1b69040..b0d1808 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -1,5 +1,4 @@ -PL=remove-boot-splash -SH=make-boot-splash make-boot-splash-raw switch-themes remove-theme +SH=make-boot-splash make-boot-splash-raw switch-themes remove-theme remove-boot-splash SYS=bootsplash.sysconfig sharedir=/usr/share @@ -9,11 +8,10 @@ all: check check: @for i in $(SH);do /bin/bash -n $$i || exit 1;echo $$i syntax OK;done - @for i in $(PL);do perl -c $$i ||exit 1;done install: @mkdir -p $(prefix)$(sharedir)/bootsplash/scripts/ $(prefix)$(etcsysdir) - @for i in $(SH) $(PL);do install -m755 $$i $(prefix)$(sharedir)/bootsplash/scripts/;done + @for i in $(SH);do install -m755 $$i $(prefix)$(sharedir)/bootsplash/scripts/;done install -m644 $(SYS) $(prefix)$(etcsysdir)/bootsplash clean: |