mirror of https://github.com/MidnightCommander/mc
fixed out-of-tree-builds
This commit is contained in:
parent
f664b98714
commit
e3a3890a3a
|
@ -1,4 +1,9 @@
|
|||
|
||||
2009-01-30 Enrico Weigelt, metux ITS <weigelt@metux.de>
|
||||
|
||||
* src/Makefile.am, edit/Makefile.am vfs/Makefile.am: fixed #208
|
||||
(out-of-tree builds)
|
||||
|
||||
2009-01-29 Mikhail S. Pobolovets <styx.mp@gmail.com>
|
||||
* lib/mc.ext.in: update for OpenOffice and StarOffice viewer.
|
||||
odt2txt is now used
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
AM_CFLAGS = $(GLIB_CFLAGS)
|
||||
AM_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir)
|
||||
|
||||
if USE_EDIT
|
||||
noinst_LIBRARIES = libedit.a
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
AM_CFLAGS = $(GLIB_CFLAGS)
|
||||
AM_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir)
|
||||
|
||||
localedir = $(datadir)/locale
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
|
|
|
@ -1,16 +1,12 @@
|
|||
if USE_SAMBA_FS
|
||||
SUBDIRS = samba extfs
|
||||
else
|
||||
SUBDIRS = extfs
|
||||
SAMBA_CFLAGS = -DCONFIGDIR=\""@configdir@"\"
|
||||
SAMBA_SUBDIRS = samba
|
||||
endif
|
||||
|
||||
DIST_SUBDIRS = extfs
|
||||
|
||||
if USE_SAMBA_FS
|
||||
AM_CFLAGS = $(GLIB_CFLAGS) -DCONFIGDIR=\""@configdir@"\"
|
||||
else
|
||||
AM_CFLAGS = $(GLIB_CFLAGS)
|
||||
endif
|
||||
SUBDIRS = extfs $(SAMBA_SUBDIRS)
|
||||
AM_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) $(SAMBA_CFLAGS)
|
||||
|
||||
BASICFILES = \
|
||||
cpio.c \
|
||||
|
|
Loading…
Reference in New Issue