You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
667 B
21 lines
667 B
Index: Makefile.in |
|
--- Makefile.in.orig 2001-05-08 09:14:55 +0200 |
|
+++ Makefile.in 2008-06-06 14:43:41 +0200 |
|
@@ -1,5 +1,6 @@ |
|
|
|
prefix=@prefix@ |
|
+sysconfdir=@sysconfdir@ |
|
WFLAGS=-Wall -W -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wcast-qual -Woverloaded-virtual -pedantic -ffor-scope |
|
CFLAGS=-O2 -g -DNDEBUG ${WFLAGS} |
|
CXX=@CXX@ ${CFLAGS} |
|
@@ -22,8 +23,8 @@ |
|
install: install-bin |
|
mkdir -p @mandir@/man1 @mandir@/man8 |
|
@INSTALL_DATA@ ${MAN1} @mandir@/man1 |
|
- mkdir -p @sysconfdir@ |
|
- @INSTALL_DATA@ clfdomainsplit.cfg @sysconfdir@ |
|
+ mkdir -p $(sysconfdir) |
|
+ @INSTALL_DATA@ clfdomainsplit.cfg $(sysconfdir) |
|
|
|
clean: |
|
rm -f $(EXES) build-stamp install-stamp
|
|
|