You've already forked mariadb-columnstore-engine
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:
@ -1,2 +1,2 @@
|
||||
|
||||
install(FILES IDBInstanceCmds.sh IDBVolumeCmds.sh DESTINATION ${ENGINE_BINDIR})
|
||||
install(PROGRAMS IDBInstanceCmds.sh IDBVolumeCmds.sh DESTINATION ${ENGINE_BINDIR})
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
install(FILES post-install
|
||||
install(PROGRAMS post-install
|
||||
pre-uninstall
|
||||
remote_command.sh
|
||||
columnstoreLogRotate
|
||||
|
@ -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})
|
||||
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user