Package: dbs
Version: 0.23
Author: Guillem Jover <guillem@debian.org>
Status: applied
Description:
 Fixed vars file path.

diff -Naur dbs-0.23/Makefile dbs-0.23-patched/Makefile
--- dbs-0.23/Makefile	2002-10-16 04:40:45.000000000 +0200
+++ dbs-0.23-patched/Makefile	2003-08-24 06:47:16.000000000 +0200
@@ -1,11 +1,14 @@
 #!/usr/bin/make -f
+
+VARSBUILD=/usr/share/dbs/vars.build
+
 all: sh.vars mk.vars
 
 clean:
 	rm -f sh.vars mk.vars
 
 mk.vars: vars
-	$(SHELL) vars.build vars make > $@
+	$(SHELL) $(VARSBUILD) vars make > $@
 sh.vars: vars
-	$(SHELL) vars.build vars shell > $@
+	$(SHELL) $(VARSBUILD) vars shell > $@
 
diff -Naur dbs-0.23/sys-build.mk dbs-0.23-patched/sys-build.mk
--- dbs-0.23/sys-build.mk	2003-02-12 02:45:00.000000000 +0100
+++ dbs-0.23-patched/sys-build.mk	2003-08-24 05:49:31.000000000 +0200
@@ -10,7 +10,7 @@
 # source.clean:		Cleans the build directory, then unfixes the upstream
 #			patches.
 # source.compile:	Will compile the source for you.  Please check
-#			debian/scripts/vars.
+#			debian/vars.
 # source.cmd:		When calling this target, if you define a variable
 #			SOURCE_CMD, it will run that command in the build
 #			tree.
@@ -19,7 +19,7 @@
 #			tree.
 #
 # Nothing in this file should require any editting.  Please look at
-# debian/scripts/vars for things to change for the local environment.
+# debian/vars for things to change for the local environment.
 #
 # debian/rules target		command
 # ----------------------------------------------------------------
@@ -34,7 +34,7 @@
 .SILENT:
 endif
 
-include debian/scripts/vars
+include debian/vars
 # remove quotes
 DIFF_EXCLUDE:=$(patsubst %,-x %,$(shell echo $(DIFF_EXCLUDE)))
 
@@ -164,4 +164,5 @@
 	$(SHELL) /usr/share/dbs/lib source.clean
 	rm -f $(STAMP_DIR_TARGETS)
 	rm -rf $(STAMP_DIR)
-	$(MAKE) -C debian/scripts clean
+	$(MAKE) -f /usr/share/dbs/Makefile -C debian clean
+
