[RAPPS]
authorDaniel Reimer <reimer.daniel@freenet.de>
Thu, 3 Dec 2015 20:26:56 +0000 (20:26 +0000)
committerDaniel Reimer <reimer.daniel@freenet.de>
Thu, 3 Dec 2015 20:26:56 +0000 (20:26 +0000)
rapps-database does not update automatically because of broken build scripts by reactosfanboy
CORE-10633 #resolve #comment Fixed by removing the copies completely and updating the ones in rapps. Not the best solution, but it works for the update task.

svn path=/trunk/; revision=70249

reactos/base/applications/rapps/CreateCabFile.bat
reactos/base/applications/rapps/CreateCabFile.sh
reactos/base/applications/rapps_new/CreateCabFile.bat [deleted file]
reactos/base/applications/rapps_new/CreateCabFile.sh [deleted file]

index 4d943b2..4e21647 100644 (file)
@@ -5,8 +5,8 @@ cd ..\..\..\media
 mkdir rapps\utf16
 
 for %%f in (rapps\*.txt) do (
-     ..\output-MinGW-i386\host-tools\tools\utf16le.exe "rapps\%%~nf.txt" "rapps\utf16\%%~nf.txt"
+     ..\output-MinGW-i386\host-tools\utf16le.exe "rapps\%%~nf.txt" "rapps\utf16\%%~nf.txt"
 )
 
-..\output-MinGW-i386\host-tools\tools\cabman\cabman.exe -M mszip -S rappmgr.cab rapps\utf16\*.txt
+..\output-MinGW-i386\host-tools\cabman.exe -M mszip -S rapps\rappmgr.cab rapps\utf16\*.txt
 rmdir /s /q rapps\utf16
index 2ee5b37..3a31ca7 100755 (executable)
@@ -1,9 +1,9 @@
 #/bin/sh
-cd ../../../media/rapps
-mkdir utf16
+cd ../../../media
+mkdir rapps/utf16
 for i in $(find -type f); do
-  ../../host-tools/tools/utf16le $i utf16/$i
+  ../../host-tools/utf16le $i utf16/$i
 done
 cd ..
-../../host-tools/tools/cabman/cabman -M mszip -S rappmgr.cab rapps/utf16/*.txt
+../../host-tools/cabman -M mszip -S rapps/rappmgr.cab rapps/utf16/*.txt
 rm -r rapps/uft16
\ No newline at end of file
diff --git a/reactos/base/applications/rapps_new/CreateCabFile.bat b/reactos/base/applications/rapps_new/CreateCabFile.bat
deleted file mode 100644 (file)
index b83f7d0..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-@echo off
-
-mkdir rapps\utf16
-
-for %%f in (rapps\*.txt) do (
-     ..\..\..\output-MinGW-i386\host-tools\tools\utf16le.exe "rapps\%%~nf.txt" "rapps\utf16\%%~nf.txt"
-)
-
-..\..\..\output-MinGW-i386\host-tools\tools\cabman\cabman.exe -M mszip -S rappmgr.cab rapps\utf16\*.txt
-rmdir /s /q rapps\utf16
diff --git a/reactos/base/applications/rapps_new/CreateCabFile.sh b/reactos/base/applications/rapps_new/CreateCabFile.sh
deleted file mode 100755 (executable)
index adb4e70..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#/bin/sh
-cd rapps
-mkdir utf16
-for i in $(find -type f); do
-  ../../../host-tools/tools/utf16le $i utf16/$i
-done
-cd ..
-../../host-tools/tools/cabman/cabman -M mszip -S rappmgr.cab rapps/utf16/*.txt
-rm -r rapps/uft16
\ No newline at end of file