Skip to content

Commit

Permalink
Rename dbcheck.exe -> bareos-dbcheck.exe
Browse files Browse the repository at this point in the history
on unix the name is bareos-dbcheck
  • Loading branch information
pstorz authored and Marco van Wieringen committed Feb 17, 2015
1 parent fdab404 commit df71d8a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion platforms/win32/winbareos-nsi.spec
Expand Up @@ -111,7 +111,7 @@ for file in \
bareos-fd.exe \
bareos-sd.exe \
bareos-dir.exe \
dbcheck.exe \
bareos-dbcheck.exe \
bconsole.exe \
bsmtp.exe \
btape.exe \
Expand Down
4 changes: 2 additions & 2 deletions platforms/win32/winbareos.nsi
Expand Up @@ -629,7 +629,7 @@ SectionIn 2
SetOutPath "$INSTDIR"
SetOverwrite ifnewer
File "bareos-dir.exe"
File "dbcheck.exe"
File "bareos-dbcheck.exe"
File "bsmtp.exe"
File "libbareoscats.dll"
File "libbareoscats-postgresql.dll"
Expand Down Expand Up @@ -1680,7 +1680,7 @@ ConfDeleteSkip:
Delete "$INSTDIR\bareos-fd.exe"
Delete "$INSTDIR\bareos-sd.exe"
Delete "$INSTDIR\bareos-dir.exe"
Delete "$INSTDIR\dbcheck.exe"
Delete "$INSTDIR\bareos-dbcheck.exe"
Delete "$INSTDIR\btape.exe"
Delete "$INSTDIR\bls.exe"
Delete "$INSTDIR\bextract.exe"
Expand Down
2 changes: 1 addition & 1 deletion platforms/win32/winbareos32.spec
Expand Up @@ -129,7 +129,7 @@ cp qt-tray-monitor/bareos-tray-monitor.exe \
stored/bls.exe \
stored/bextract.exe \
dird/bareos-dir.exe \
dird/dbcheck.exe \
dird/bareos-dbcheck.exe \
tools/bsmtp.exe \
stored/libbareossd*.dll \
cats/libbareoscats*.dll \
Expand Down
2 changes: 1 addition & 1 deletion platforms/win32/winbareos64.spec
Expand Up @@ -129,7 +129,7 @@ cp qt-tray-monitor/bareos-tray-monitor.exe \
stored/bls.exe \
stored/bextract.exe \
dird/bareos-dir.exe \
dird/dbcheck.exe \
dird/bareos-dbcheck.exe \
tools/bsmtp.exe \
stored/libbareossd*.dll \
cats/libbareoscats*.dll \
Expand Down
8 changes: 4 additions & 4 deletions src/win32/dird/Makefile
Expand Up @@ -55,21 +55,21 @@ WINDRESOBJS = $(WINDRESSRCS:.rc=.o)
DBCHKRESSRCS = dbcheckres.rc
DBCHKRESOBJS = $(DBCHKRESSRCS:.rc=.o)

all: bareos-dir.exe dbcheck.exe
all: bareos-dir.exe bareos-dbcheck.exe

bareos-dir.exe: DLL_USAGE = -DUSING_DLL
bareos-dir.exe: $(SVROBJS) $(WINDRESOBJS)
$(CXX) $(LDFLAGS_WINAPP) $(SVROBJS) $(WINDRESOBJS) $(LDLIBS) -o $@

dbcheck.exe: DLL_USAGE = -DUSING_DLL
dbcheck.exe: $(DBCHKOBJS) $(DBCHKRESOBJS)
bareos-dbcheck.exe: DLL_USAGE = -DUSING_DLL
bareos-dbcheck.exe: $(DBCHKOBJS) $(DBCHKRESOBJS)
$(CXX) $(LDFLAGS_CONS) $(DBCHKOBJS) $(LDLIBS) $(DBCHKRESOBJS) -o $@

clean:
rm -f *.o

distclean:: clean
rm -f bareos-dir.exe dbcheck.exe
rm -f bareos-dir.exe bareos-dbcheck.exe

# inference rules
.c.o:
Expand Down
4 changes: 2 additions & 2 deletions src/win32/dird/dbcheckres.rc.in
Expand Up @@ -10,8 +10,8 @@ BEGIN
VALUE "CompanyName", "Bareos GmbH & Co. KG"
VALUE "FileDescription", "Bareos Database Check"
VALUE "FileVersion", @VERSION@
VALUE "InternalName", "dbcheck.exe"
VALUE "OriginalFilename", "dbcheck.exe"
VALUE "InternalName", "bareos-dbcheck.exe"
VALUE "OriginalFilename", "bareos-dbcheck.exe"
VALUE "ProductName", "Bareos Database Check"
VALUE "ProductVersion", @VERSION@
VALUE "LegalCopyright", "Copyright 2000-2012 Free Software Foundation Europe e.V. "
Expand Down

0 comments on commit df71d8a

Please sign in to comment.