Skip to content

Commit

Permalink
Fix Makefile issue, update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
rasa committed Mar 28, 2015
1 parent a30bd5d commit cd1ce06
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -458,3 +458,8 @@ sha1s.txt
sha256s.txt
*.asc
*.sha256

.*.uploaded
.*.scanned
.*.released
.*.tagged
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.9 (28-Mar-2015)

* Fix segfault due to linker issue (#1)

## 1.8 (27-Mar-2015)

* Executables signed with StartSSL code signing certificate
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ endif
define FIND_SIGNTOOL

ifndef SIGNTOOL
SDK_DIR:=$$(shell cygpath -m -s $(1) 2>/dev/null)
SDK_DIR:=$$(shell cygpath -m -s "$(1)" 2>/dev/null)
ifneq ($$(wildcard $$(SDK_DIR)/signtool.exe),)
SIGNTOOL:=$$(SDK_DIR)/signtool.exe
endif
Expand Down Expand Up @@ -371,7 +371,7 @@ publish: $(UPLOADED_FILES) $(SCANNED_FILES)

.PHONY: tidy
tidy: clean
-rm -f $(CLEANED_FILES) \
-rm -f $(CLEAN_FILES) \
$(HASH_FILES) \
$(SIGNED_FILES) \
$(UPXED_FILES)
Expand Down
3 changes: 0 additions & 3 deletions lsdsk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@ Available: F: G: I: K: Y:
#include <map>
#include <list>

//#include "Stackwalker.h"
//#include "Optimize.h"
#include "SystemMessage.h"
#include "debug.h"
#include "getopt.h"

Expand Down
4 changes: 2 additions & 2 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define VER_INTERNAL_NAME "lsdsk"
#define VER_FILE_DESCRIPTION "List mounted disks"
#define VER_MAJOR 1
#define VER_MINOR 8
#define VER_STRING2 "1.8"
#define VER_MINOR 9
#define VER_STRING2 "1.9"

#include "ver_defaults.h"

0 comments on commit cd1ce06

Please sign in to comment.