1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

make installed scripts executable

This commit is contained in:
Ben Thompson
2016-07-15 10:43:56 -05:00
parent f1f59ce6a6
commit 3933982f3c
4 changed files with 5 additions and 5 deletions

View File

@ -1,2 +1,2 @@
install(FILES IDBInstanceCmds.sh IDBVolumeCmds.sh DESTINATION ${ENGINE_BINDIR})
install(PROGRAMS IDBInstanceCmds.sh IDBVolumeCmds.sh DESTINATION ${ENGINE_BINDIR})

View File

@ -1,5 +1,5 @@
install(FILES post-install
install(PROGRAMS post-install
pre-uninstall
remote_command.sh
columnstoreLogRotate

View File

@ -12,5 +12,5 @@ target_link_libraries(setConfig ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS})
install(TARGETS setConfig DESTINATION ${ENGINE_BINDIR})
install(FILES configxml.sh DESTINATION ${ENGINE_BINDIR})
install(PROGRAMS configxml.sh DESTINATION ${ENGINE_BINDIR})

View File

@ -1,8 +1,8 @@
#!/bin/sh
./genMsgId.pl > messageids-temp.h
diff -abBq messageids-temp.h messageids.h >/dev/null 2>&1; if [ $? -ne 0 ]; then mv -f messageids-temp.h messageids.h; else touch messageids.h; fi;
diff -abBq messageids-temp.h messageids.h >/dev/null 2>&1; if [ $? -ne 0 ]; then mv -f messageids-temp.h messageids.h; else touch -a messageids.h; fi;
rm -f messageids-temp.h
./genErrId.pl > errorids-temp.h
diff -abBq errorids-temp.h errorids.h >/dev/null 2>&1; if [ $? -ne 0 ]; then mv -f errorids-temp.h errorids.h; else touch errorids.h; fi;
diff -abBq errorids-temp.h errorids.h >/dev/null 2>&1; if [ $? -ne 0 ]; then mv -f errorids-temp.h errorids.h; else touch -a errorids.h; fi;
rm -f errorids-temp.h