summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY.h7
-rw-r--r--Makefile2
-rwxr-xr-xscripts/epgd-dropall4
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