mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
[internal] update app URL as well as scripts
This commit is contained in:
parent
e78f07cda6
commit
78ad099bf9
11 changed files with 24 additions and 18 deletions
4
.gitattributes
vendored
4
.gitattributes
vendored
|
@ -2,12 +2,14 @@
|
||||||
*.ac eol=lf
|
*.ac eol=lf
|
||||||
*.am eol=lf
|
*.am eol=lf
|
||||||
*.in eol=lf
|
*.in eol=lf
|
||||||
mkf eol=lf
|
*.m4 eol=lf
|
||||||
configure eol=lf
|
configure eol=lf
|
||||||
|
install-sh eol=lf
|
||||||
*.sln eol=crlf
|
*.sln eol=crlf
|
||||||
*.vcproj eol=crlf
|
*.vcproj eol=crlf
|
||||||
*.vcxproj* eol=crlf
|
*.vcxproj* eol=crlf
|
||||||
*.rc eol=crlf
|
*.rc eol=crlf
|
||||||
|
*.cmd eol=crlf
|
||||||
*.sh export-ignore
|
*.sh export-ignore
|
||||||
.gitattributes export-ignore
|
.gitattributes export-ignore
|
||||||
.gitignore export-ignore
|
.gitignore export-ignore
|
||||||
|
|
|
@ -6,4 +6,4 @@ release: all
|
||||||
@mv src/$(TARGET)$(EXEEXT) .
|
@mv src/$(TARGET)$(EXEEXT) .
|
||||||
@$(STRIP) $(TARGET)$(EXEEXT)
|
@$(STRIP) $(TARGET)$(EXEEXT)
|
||||||
@upx $(TARGET)$(EXEEXT)
|
@upx $(TARGET)$(EXEEXT)
|
||||||
@cmd.exe /k _sign.bat $(TARGET)$(EXEEXT)
|
@cmd.exe /k _sign.cmd $(TARGET)$(EXEEXT)
|
||||||
|
|
|
@ -446,7 +446,7 @@ release: all
|
||||||
@mv src/$(TARGET)$(EXEEXT) .
|
@mv src/$(TARGET)$(EXEEXT) .
|
||||||
@$(STRIP) $(TARGET)$(EXEEXT)
|
@$(STRIP) $(TARGET)$(EXEEXT)
|
||||||
@upx $(TARGET)$(EXEEXT)
|
@upx $(TARGET)$(EXEEXT)
|
||||||
@cmd.exe /k _sign.bat $(TARGET)$(EXEEXT)
|
@cmd.exe /k _sign.cmd $(TARGET)$(EXEEXT)
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
|
|
|
@ -5,7 +5,9 @@
|
||||||
# To have git run this script on commit, create a "post-commit" text file in
|
# To have git run this script on commit, create a "post-commit" text file in
|
||||||
# .git/hooks/ with the following content:
|
# .git/hooks/ with the following content:
|
||||||
# #!/bin/sh
|
# #!/bin/sh
|
||||||
# source ./_post-commit.sh
|
# if [ -x ./_post-commit.sh ]; then
|
||||||
|
# source ./_post-commit.sh
|
||||||
|
# fi
|
||||||
|
|
||||||
type -P git &>/dev/null || { echo "git command not found. Aborting." >&2; exit 1; }
|
type -P git &>/dev/null || { echo "git command not found. Aborting." >&2; exit 1; }
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,9 @@
|
||||||
# To have git run this script on commit, create a "pre-commit" text file in
|
# To have git run this script on commit, create a "pre-commit" text file in
|
||||||
# .git/hooks/ with the following content:
|
# .git/hooks/ with the following content:
|
||||||
# #!/bin/sh
|
# #!/bin/sh
|
||||||
# source ./_pre-commit.sh
|
# if [ -x ./_pre-commit.sh ]; then
|
||||||
|
# source ./_pre-commit.sh
|
||||||
|
# fi
|
||||||
|
|
||||||
type -P sed &>/dev/null || { echo "sed command not found. Aborting." >&2; exit 1; }
|
type -P sed &>/dev/null || { echo "sed command not found. Aborting." >&2; exit 1; }
|
||||||
type -P grep &>/dev/null || { echo "grep command not found. Aborting." >&2; exit 1; }
|
type -P grep &>/dev/null || { echo "grep command not found. Aborting." >&2; exit 1; }
|
||||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -3362,7 +3362,7 @@ $as_echo "#define _GNU_SOURCE /**/" >>confdefs.h
|
||||||
|
|
||||||
# Clang needs an explicit WIN32_WINNT defined else it produces warnings
|
# Clang needs an explicit WIN32_WINNT defined else it produces warnings
|
||||||
# in msapi_utf8.h - including winver.h only doesn't work
|
# in msapi_utf8.h - including winver.h only doesn't work
|
||||||
AM_CFLAGS="${AM_CFLAGS} -DWINVER=0x501 -D_WIN32_WINNT=0x501 -D_WIN32_IE=0x501"
|
AM_CFLAGS="${AM_CFLAGS} -DWINVER=0x501 -D_WIN32_IE=0x501"
|
||||||
AM_LDFLAGS="${AM_LDFLAGS} -Wl,-no-undefined"
|
AM_LDFLAGS="${AM_LDFLAGS} -Wl,-no-undefined"
|
||||||
|
|
||||||
# Debug logging
|
# Debug logging
|
||||||
|
|
|
@ -33,7 +33,7 @@ AC_DEFINE([_GNU_SOURCE], [], [Use GNU extensions])
|
||||||
|
|
||||||
# Clang needs an explicit WIN32_WINNT defined else it produces warnings
|
# Clang needs an explicit WIN32_WINNT defined else it produces warnings
|
||||||
# in msapi_utf8.h - including winver.h only doesn't work
|
# in msapi_utf8.h - including winver.h only doesn't work
|
||||||
AM_CFLAGS="${AM_CFLAGS} -DWINVER=0x501 -D_WIN32_WINNT=0x501 -D_WIN32_IE=0x501"
|
AM_CFLAGS="${AM_CFLAGS} -DWINVER=0x501 -D_WIN32_IE=0x501"
|
||||||
AM_LDFLAGS="${AM_LDFLAGS} -Wl,-no-undefined"
|
AM_LDFLAGS="${AM_LDFLAGS} -Wl,-no-undefined"
|
||||||
|
|
||||||
# Debug logging
|
# Debug logging
|
||||||
|
|
|
@ -518,3 +518,4 @@ done
|
||||||
# time-stamp-time-zone: "UTC"
|
# time-stamp-time-zone: "UTC"
|
||||||
# time-stamp-end: "; # UTC"
|
# time-stamp-end: "; # UTC"
|
||||||
# End:
|
# End:
|
||||||
|
|