From 2e665baf4a4c0fdb6dec254a762eb50f6a81849f Mon Sep 17 00:00:00 2001 From: horchi Date: Mon, 25 Apr 2022 07:55:27 +0200 Subject: 2022-04-25: version 1.2.3 (horchi)\n - bugfix: Fixed syntax error in Makefile (thx to Michael Schaffner)\n\n --- HISTORY.h | 7 +++++-- Makefile | 2 +- scripts/epgd-dropall | 4 ++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/HISTORY.h b/HISTORY.h index 55916ad..8952210 100644 --- a/HISTORY.h +++ b/HISTORY.h @@ -4,8 +4,8 @@ * ----------------------------------- */ -#define _VERSION "1.2.2" -#define VERSION_DATE "04.01.2022" +#define _VERSION "1.2.3" +#define VERSION_DATE "25.04.2022" #define DB_API 7 #ifdef GIT_REV @@ -18,6 +18,9 @@ * ------------------------------------ * +2022-04-25: version 1.2.3 (horchi) + - bugfix: Fixed syntax error in Makefile (thx to Michael Schaffner) + 2022-01-04: version 1.2.2 (horchi) - bugfix: Fixed build dependencies diff --git a/Makefile b/Makefile index 942515b..94f2536 100644 --- a/Makefile +++ b/Makefile @@ -190,7 +190,7 @@ install-plugins: plugins install-scripts: if ! test -d $(_BINDEST); then \ - mkdir -p "$(_BINDEST)" \ + mkdir -p $(_BINDEST); \ chmod a+rx $(_BINDEST); \ fi install -D ./scripts/epgd-*[!~] $(_BINDEST)/ diff --git a/scripts/epgd-dropall b/scripts/epgd-dropall index 65ef65b..f5f889c 100755 --- a/scripts/epgd-dropall +++ b/scripts/epgd-dropall @@ -144,10 +144,10 @@ if [ "${i}" = "y" ]; then mysqldump --opt -u epg2vdr epg2vdr users | gzip > ./users-dump.sql.gz echo "Table users dumped to ./users-dump.sql.gz" - mysqldump --opt -u epg2vdr epg2vdr timersdone | gzip > ./timersdone-sump.sql.gz + mysqldump --opt -u epg2vdr epg2vdr timersdone | gzip > ./timersdone-dump.sql.gz echo "Table timersdone dumped to ./timersdone-dump.sql.gz" - mysqldump --opt -u epg2vdr epg2vdr searchtimers | gzip > ./searchtimers-sump.sql.gz + mysqldump --opt -u epg2vdr epg2vdr searchtimers | gzip > ./searchtimers-dump.sql.gz echo "Table searchtimers dumped to ./searchtimers-dump.sql.gz" fi -- cgit v1.2.3