فهرست منبع

Revert "Use echo -e to interpret escapes when building vlc-plugins-*.h"

This reverts commit c5b4099963babbfb29961bd39cffa520e69d3a42.

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Andre Silva 9 سال پیش
والد
کامیت
37348ff596
1فایلهای تغییر یافته به همراه4 افزوده شده و 4 حذف شده
  1. 4 4
      buildMobileVLCKit.sh

+ 4 - 4
buildMobileVLCKit.sh

@@ -371,8 +371,8 @@ build_universal_static_lib() {
 
 	# create module list
 	info "creating module list"
-	echo -e "// This file is autogenerated by $(basename $0)\n\n" > $PROJECT_DIR/MobileVLCKit/vlc-plugins-$OSSTYLE.h
-	echo -e "// This file is autogenerated by $(basename $0)\n\n" > $PROJECT_DIR/MobileVLCKit/vlc-plugins-$OSSTYLE.xcconfig
+	echo "// This file is autogenerated by $(basename $0)\n\n" > $PROJECT_DIR/MobileVLCKit/vlc-plugins-$OSSTYLE.h
+	echo "// This file is autogenerated by $(basename $0)\n\n" > $PROJECT_DIR/MobileVLCKit/vlc-plugins-$OSSTYLE.xcconfig
 
 	# arm64 got the lowest number of modules
 	BUILTINS="const void *vlc_static_modules[] = {\n"; \
@@ -414,8 +414,8 @@ build_universal_static_lib() {
 
 	BUILTINS="$BUILTINS NULL\n};\n"
 
-	echo -e "$DEFINITIONS\n$BUILTINS" > $PROJECT_DIR/MobileVLCKit/vlc-plugins-$OSSTYLE.h
-	echo -e "VLC_PLUGINS_LDFLAGS=$LDFLAGS" > $PROJECT_DIR/MobileVLCKit/vlc-plugins-$OSSTYLE.xcconfig
+	echo "$DEFINITIONS\n$BUILTINS" > $PROJECT_DIR/MobileVLCKit/vlc-plugins-$OSSTYLE.h
+	echo "VLC_PLUGINS_LDFLAGS=$LDFLAGS" > $PROJECT_DIR/MobileVLCKit/vlc-plugins-$OSSTYLE.xcconfig
 
 	spopd # vlc
 }