mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-18 12:00:31 +01:00
Automake dependency tracking
I just spent an hour trying to find out why the latest wmaker-crm was ignoring a number of the preferences in my configuration file. It turns out the problem was that commit f41db5 added a value into the middle of the enum in src/keybind.h, and the setting of AUTOMAKE_OPTIONS = no-dependencies in all the Makefile.ams meant that make wasn't smart enough to rebuild the files depending on it. Would anyone mind if we just remove no-dependencies from AUTOMAKE_OPTIONS? People can still run ./configure with --disable-dependency-tracking to disable it at configure time.
This commit is contained in:
committed by
Carlos R. Mafra
parent
9318a7f428
commit
5afe745c01
@@ -1,6 +1,6 @@
|
|||||||
## automake input file for WINGs - Documentation
|
## automake input file for WINGs - Documentation
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = no-dependencies
|
AUTOMAKE_OPTIONS =
|
||||||
|
|
||||||
EXTRA_DIST =
|
EXTRA_DIST =
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
## automake input file for WINGs - Examples
|
## automake input file for WINGs - Examples
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = no-dependencies
|
AUTOMAKE_OPTIONS =
|
||||||
|
|
||||||
|
|
||||||
noinst_PROGRAMS = connect server fontl puzzle colorpick
|
noinst_PROGRAMS = connect server fontl puzzle colorpick
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
## automake input file for WINGs
|
## automake input file for WINGs
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = no-dependencies
|
AUTOMAKE_OPTIONS =
|
||||||
|
|
||||||
# is this a kluge? if so, how should i do it?
|
# is this a kluge? if so, how should i do it?
|
||||||
includedir = @includedir@/WINGs
|
includedir = @includedir@/WINGs
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
## automake input file for WINGs
|
## automake input file for WINGs
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = no-dependencies
|
AUTOMAKE_OPTIONS =
|
||||||
|
|
||||||
SUBDIRS = WINGs . po Documentation Resources
|
SUBDIRS = WINGs . po Documentation Resources
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
## automake input file for WINGs - Tests
|
## automake input file for WINGs - Tests
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = no-dependencies
|
AUTOMAKE_OPTIONS =
|
||||||
|
|
||||||
noinst_PROGRAMS = wtest wmquery wmfile testmywidget
|
noinst_PROGRAMS = wtest wmquery wmfile testmywidget
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
## automake input file for WINGs - Headers subdir
|
## automake input file for WINGs - Headers subdir
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = no-dependencies
|
AUTOMAKE_OPTIONS =
|
||||||
|
|
||||||
# is this a kluge? if so, how should i do it?
|
# is this a kluge? if so, how should i do it?
|
||||||
includedir = @includedir@/WINGs
|
includedir = @includedir@/WINGs
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
SUBDIRS = xpm tiff po
|
SUBDIRS = xpm tiff po
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = no-dependencies
|
AUTOMAKE_OPTIONS =
|
||||||
|
|
||||||
wpexecbindir = @wprefs_bindir@
|
wpexecbindir = @wprefs_bindir@
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
AUTOMAKE_OPTIONS = no-dependencies
|
AUTOMAKE_OPTIONS =
|
||||||
|
|
||||||
BUILT_SOURCES = wconfig.h
|
BUILT_SOURCES = wconfig.h
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
SUBDIRS = po
|
SUBDIRS = po
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = no-dependencies
|
AUTOMAKE_OPTIONS =
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@
|
pkgdatadir = $(datadir)/@PACKAGE@
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
SUBDIRS = .
|
SUBDIRS = .
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = no-dependencies
|
AUTOMAKE_OPTIONS =
|
||||||
|
|
||||||
EXTRA_DIST = tests
|
EXTRA_DIST = tests
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
## automake input file for wrlib
|
## automake input file for wrlib
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = no-dependencies
|
AUTOMAKE_OPTIONS =
|
||||||
|
|
||||||
noinst_PROGRAMS = testdraw testgrad testrot view
|
noinst_PROGRAMS = testdraw testgrad testrot view
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user