1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Install mkThumbs in bin, not sbin.
Earlier it would be installed in sbin by cmake and bin by d/rules. No need
to have it both places.
Author: Petter Reinholdtsen <pere@hungry.com>
Bug-Debian: http://bugs.debian.org/1064802
Forwarded: no
Reviewed-By: Petter Reinholdtsen <pere@hungry.com>
Last-Update: 2024-04-11
===
Index: oggvideotools/scripts/CMakeLists.txt
===================================================================
--- oggvideotools.orig/scripts/CMakeLists.txt 2024-04-11 08:33:36.033893525 +0200
+++ oggvideotools/scripts/CMakeLists.txt 2024-04-11 08:33:36.029893478 +0200
@@ -1,4 +1,4 @@
SET ( SCRIPT_SRC mkThumbs )
-INSTALL ( FILES ${SCRIPT_SRC} DESTINATION sbin )
+INSTALL ( FILES ${SCRIPT_SRC} DESTINATION bin )
|