Skip to content

Commit a4ac64a

Browse files
committed
Add support for out-of-tree builds, per Issue bmc#12. Thanks to @andy-js
1 parent 9378868 commit a4ac64a

3 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
daemonize Change Log
22
====================
33

4+
Changes in version 1.7.5:
5+
6+
- Added support for out-of-tree builds, per [Issue #12][]. Thanks to
7+
@andy-js
8+
9+
[Issue #12]: https://github.com/bmc/daemonize/issues/12
10+
11+
-----------------------------------------------------------------------------
412
Changes in version 1.7.4:
513

614
- Merged `acconfig.h` patch from Andreas Müller

Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ CC = @CC@
1717
.PHONY: all psman install clean distclean
1818

1919
.c.o:
20-
$(CC) $(CFLAGS) -c $< -I.
20+
$(CC) $(CFLAGS) -c $< -I. -I$(srcdir)
2121

2222
all: daemonize
2323

@@ -41,7 +41,7 @@ install:
4141
mkdir -p $(DESTDIR)$(INSTALL_SBIN)
4242
$(INSTALL) -m 0755 daemonize $(DESTDIR)$(INSTALL_SBIN)
4343
mkdir -p $(DESTDIR)$(INSTALL_MAN)/man1
44-
$(INSTALL) -m 0644 daemonize.1 $(DESTDIR)$(INSTALL_MAN)/man1
44+
$(INSTALL) -m 0644 $(srcdir)/daemonize.1 $(DESTDIR)$(INSTALL_MAN)/man1
4545

4646
clean:
4747
rm -rf *.o daemonize testdaemon *.ps

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* Version stamp */
22

33
#ifndef VERSION
4-
#define VERSION "1.7.4"
4+
#define VERSION "1.7.5"
55
#endif

0 commit comments

Comments
 (0)