Description: disable id check during build, since it is unnecessary.
Author: Andres Salomon <dilinger@debian.org>
Last-Update: 2005-10-03
Index: firedns-0.9.12+dfsg/firemake/id
===================================================================
--- firedns-0.9.12+dfsg.orig/firemake/id
+++ firedns-0.9.12+dfsg/firemake/id
@@ -1,13 +1,13 @@
 #!/bin/sh
 #phase init
-dispn "Checking for id..."
-if /usr/xpg4/bin/id 2>/dev/null; then
-	disp "found, /usr/xpg4/bin/id"
-	ID="/usr/xpg4/bin/id"
-elif id 2>/dev/null; then
-	disp "found, id"
-	ID="id"
-else
-	disp "not found, aborting"
-	exit 1
-fi
+#dispn "Checking for id..."
+#if /usr/xpg4/bin/id 2>/dev/null; then
+#	disp "found, /usr/xpg4/bin/id"
+#	ID="/usr/xpg4/bin/id"
+#elif id 2>/dev/null; then
+#	disp "found, id"
+#	ID="id"
+#else
+#	disp "not found, aborting"
+#	exit 1
+#fi
Index: firedns-0.9.12+dfsg/firemake/install
===================================================================
--- firedns-0.9.12+dfsg.orig/firemake/install
+++ firedns-0.9.12+dfsg/firemake/install
@@ -19,14 +19,14 @@ chmod \$5 \$FILENAME" > copy.sh
 		disp "done"
 
 		dispn "Checking for installation username..."
-		INSTALL_GROUP=`$ID -ng root`
-		if test "$?" = "0"; then
+		INSTALL_GROUP="root"
+		#if test "$?" = "0"; then
 			INSTALL_USER=root
 			disp "found, \"root\""
-		else
-			disp "none found, aborting"
-			exit 1
-		fi
+		#else
+		#	disp "none found, aborting"
+		#	exit 1
+		#fi
 
 		dispn "Checking for installation group name..."
 		if test "$INSTALL_GROUP" = ""; then
