Skip to content

Commit

Permalink
fdupes-1.41-PR3
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianlopezroche authored and jobermayr committed May 16, 2001
1 parent 26dc23f commit 203d52e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
20 changes: 11 additions & 9 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@ The following people have contributed in some way to the development
of fdupes. Please see the CHANGES file for detailed information
on their contributions. Names are listed in alphabetical order.

[AB] Adrian Bridgett <[email protected]>
[AL] Adrian Lopez <[email protected]>
[FD] Frank DENIS aka Jedi/Sector One aka DJ Chrysalis <[email protected]>
[KK] Kresimir Kukulj <[email protected]>
[LB] Laurent Bonnaud <[email protected]>
[LM] Luca Montecchiani <[email protected]>
[LR] Lukas Ruf <[email protected]>
[PB] Peter Bray <>
[SSD] Steven S. Dick <[email protected]>
[AB] Adrian Bridgett ([email protected])
[AL] Adrian Lopez ([email protected])
[FD] Frank DENIS, a.k.a.
Jedi/Sector One, a.k.a.
DJ Chrysalis ([email protected])
[KK] Kresimir Kukulj ([email protected])
[LB] Laurent Bonnaud ([email protected])
[LM] Luca Montecchiani ([email protected])
[LR] Lukas Ruf ([email protected])
[PB] Peter Bray (Sydney, Australia)
[SSD] Steven S. Dick ([email protected])

7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ PREFIX = /usr/local
#
# VERSION determines the program's version number.
#
VERSION = 1.41-PR2
VERSION = 1.41-PR3

#
# PROGRAM_NAME determines the installation name and manual page name
Expand Down Expand Up @@ -108,8 +108,9 @@ all: fdupes
fdupes: $(OBJECT_FILES)
$(CC) $(CFLAGS) -o fdupes $(OBJECT_FILES)

installdirs: $(BIN_DIR) $(MAN_DIR)
-$(MKDIR) $(BIN_DIR) $(MAN_DIR)
installdirs:
test -d $(BIN_DIR) || -$(MKDIR) $(BIN_DIR)
test -d $(MAN_DIR) || -$(MKDIR) $(MAN_DIR)

install: fdupes installdirs
$(INSTALL_PROGRAM) fdupes $(BIN_DIR)/$(PROGRAM_NAME)
Expand Down

0 comments on commit 203d52e

Please sign in to comment.